Skip to content
Merged
Changes from all commits
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
17 changes: 6 additions & 11 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,18 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Setup .NET 9
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: |
8.0.x
9.0.x
- name: Restore dependencies
working-directory: ./src/
run: dotnet restore
- name: Build
working-directory: ./src/
run: dotnet build --no-restore
- name: Test .NET 9.0
working-directory: ./src/
run: dotnet test --framework net9.0 --no-build --verbosity normal
- name: Test .NET 8.0
- name: Test .NET
working-directory: ./src/
run: dotnet test --framework net8.0 --no-build --verbosity normal
run: dotnet test --no-build --verbosity normal