Skip to content

Commit

Permalink
Fix for test action dotnet versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoCanessa committed Feb 10, 2025
1 parent aa77ec6 commit 77561f5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
'9'
'8'
- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --framework net9.0 --configuration Release --no-restore
run: dotnet build --configuration Release --no-restore

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

0 comments on commit 77561f5

Please sign in to comment.