Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-lucas6 committed Nov 19, 2023
2 parents a00c305 + e440ccc commit 7c8244d
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 7.0/Debug)
run: dotnet test -f net7.0 -c Debug
- name: Test (.NET 7.0/Release)
Expand All @@ -44,7 +49,12 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 7.0/Debug)
run: dotnet test -f net7.0 -c Debug
- name: Test (.NET 7.0/Release)
Expand All @@ -67,7 +77,12 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 7.0/Debug)
run: dotnet test -f net7.0 -c Debug
- name: Test (.NET 7.0/Release)
Expand All @@ -80,14 +95,14 @@ jobs:
test-linux-musl-x64:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:7.0-alpine
image: mcr.microsoft.com/dotnet/sdk:8.0-alpine
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- uses: actions/checkout@v4
- run: dotnet --info
- name: Test (.NET 7.0/Debug)
run: dotnet test -f net7.0 -c Debug
- name: Test (.NET 7.0/Release)
run: dotnet test -f net7.0 -c Release
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release

0 comments on commit 7c8244d

Please sign in to comment.