[WIP] Use compiled queries
Some checks failed
Test / Run tests (push) Failing after 2m6s

This commit is contained in:
2026-04-04 15:28:30 +02:00
parent bd1e579674
commit 748e1fb8bd
39 changed files with 370 additions and 359 deletions

View File

@@ -23,6 +23,16 @@ jobs:
echo "No files with BOM found"
exit 0
}
- name: Check for code smells
shell: powershell
run: |
git grep -IEn "\.(Single|First|Min|Max|Any)(OrDefault)?Async\([^)]|^using System.Data.Entity;"
if ( $lastexitcode -ne 1 ) {
exit 1
} else {
echo "No files with code smells found"
exit 0
}
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1
- name: Setup NuGet