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
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ jobs:
- name: Build
run: dotnet build --configuration Release --no-restore /p:Version=$VERSION

- name: Test
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal
- name: Test net8.0
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net8.0

- name: Test net9.0
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net9.0

- name: Pack nuget packages
run: dotnet pack --configuration Release --no-restore --no-build --output nupkgs /p:PackageVersion=$VERSION
Expand Down
Loading