Skip to content

Commit

Permalink
Install multiple .NET versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vbreuss committed Dec 16, 2024
1 parent a6447d2 commit 182b685
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run unit tests (windows)
if: matrix.os == 'windows-latest'
Expand Down Expand Up @@ -49,6 +51,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: API checks
run: ./build.sh ApiChecks
Expand Down Expand Up @@ -76,6 +80,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run mutation tests
run: ./build.sh MutationTestsLinux
Expand All @@ -95,6 +101,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run mutation tests
run: ./build.ps1 MutationTestsWindows
Expand All @@ -114,6 +122,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run sonarcloud analysis
run: ./build.sh CodeAnalysis
Expand Down Expand Up @@ -151,6 +161,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Pack nuget packages
run: ./build.sh Pack
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run unit tests (windows)
if: matrix.os == 'windows-latest'
Expand Down Expand Up @@ -49,6 +51,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: API checks
run: ./build.sh ApiChecks
Expand Down Expand Up @@ -76,6 +80,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run mutation tests
run: ./build.sh MutationTestsLinux
Expand All @@ -95,6 +101,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run mutation tests
run: ./build.ps1 MutationTestsWindows
Expand All @@ -115,6 +123,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Run sonarcloud analysis
run: ./build.sh CodeAnalysis
Expand Down

0 comments on commit 182b685

Please sign in to comment.