-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests: Expand Test Matrix with .NET 6, 7 & 8 (#142)
- Loading branch information
1 parent
9da7d17
commit b5dd50e
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ env: | |
|
||
jobs: | ||
build: | ||
name: Build-${{matrix.os}} | ||
name: pipeline-${{matrix.os}}-dotnet-${{matrix.dotnet-version}} | ||
runs-on: ${{matrix.os}} | ||
|
||
services: | ||
|
@@ -41,19 +41,20 @@ jobs: | |
strategy: | ||
matrix: | ||
# Disable other platforms until post Beta | ||
# Docker containers not supported on windows and macOS in Github runners. | ||
# os: [ubuntu-latest, windows-latest, macOS-latest] | ||
os: [ubuntu-latest] | ||
dotnet-version: ['6.0.x', '7.0.x', '8.0.x'] | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/[email protected] | ||
with: | ||
lfs: true | ||
fetch-depth: 0 | ||
- name: "Install .NET Core SDK" | ||
uses: actions/setup-dotnet@v4.0.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '7.0.103' | ||
dotnet-version: '${{ matrix.dotnet-version }}' | ||
- name: "Dotnet Tool Restore" | ||
run: dotnet tool restore | ||
shell: pwsh | ||
|