We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5663d0 commit 3c96183Copy full SHA for 3c96183
.github/workflows/build-and-tests.yml
@@ -43,9 +43,12 @@ jobs:
43
- name: Check containers
44
run: docker ps -a
45
46
- - name: Run tests
+ - name: Run tests (.NET 8)
47
run: dotnet test --framework net8.0 --configuration Release --no-build --verbosity normal --logger GitHubActions
48
49
+ - name: Run tests (.NET 9)
50
+ run: dotnet test --framework net9.0 --configuration Release --no-build --verbosity normal --logger GitHubActions
51
+
52
- name: Stop Docker Compose
53
run: docker compose -f docker-compose.yml down
54
0 commit comments