Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing in .NET 9 #413

Merged
merged 9 commits into from
Nov 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update run_test.yml
tomohisa committed Nov 13, 2024
commit 6431a4f5927e9f58fdd4cc6f4087044862d0dd15
7 changes: 5 additions & 2 deletions .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
@@ -322,10 +322,13 @@ jobs:
run: |
dotnet build Sekiban.sln -c Release
- name: Test dotnet tests/Sekiban.Test.Dynamo
- name: Test dotnet tests/Sekiban.Test.Dynamo .NET8
run: |
dotnet test tests/Sekiban.Test.Dynamo/Sekiban.Test.Dynamo.csproj --filter "Category!=Flaky&Category!=Performance" -v m -c Release -m:1 -f net8.0
- name: Test dotnet tests/Sekiban.Test.Dynamo .NET9
run: |
dotnet test tests/Sekiban.Test.Dynamo/Sekiban.Test.Dynamo.csproj --filter "Category!=Flaky&Category!=Performance" -v m -c Release -m:1 -f net9.0
regular80postgres:
strategy:
max-parallel: 4