Skip to content

Commit

Permalink
chore: remove dotnet from matrix strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddesmet committed May 16, 2024
1 parent 58f78f6 commit d2fdc8c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ env:

jobs:
build:
name: Build on ${{matrix.os}} with .NET ${{ matrix.dotnet }}
name: Build on ${{matrix.os}} # with .NET ${{ matrix.dotnet }}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [ '6.0.x', '8.0.x' ]
#dotnet: [ '6.0.x', '8.0.x' ]

steps:
- name: 'Checkout'
Expand All @@ -59,7 +59,10 @@ jobs:
- name: 'Install .NET SDK'
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
dotnet-version: |
6.0.x
8.0.x
#dotnet-version: ${{ matrix.dotnet }}
- name: '.NET Restore'
run: dotnet tool restore
- name: 'Build Project'
Expand Down

0 comments on commit d2fdc8c

Please sign in to comment.