Skip to content

Commit

Permalink
Tests: Expand Test Matrix with .NET 6, 7 & 8 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
pglombardo authored Apr 4, 2024
1 parent 9da7d17 commit b5dd50e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
build:
name: Build-${{matrix.os}}
name: pipeline-${{matrix.os}}-dotnet-${{matrix.dotnet-version}}
runs-on: ${{matrix.os}}

services:
Expand All @@ -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
Expand Down

0 comments on commit b5dd50e

Please sign in to comment.