Skip to content

Commit

Permalink
fix: ci pipeline to support NET8
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed May 11, 2024
1 parent 56b3235 commit f50f030
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: |
6.x
7.x
8.x
dotnet-quality: 'ga'
- name: Restore
run: dotnet restore
Expand All @@ -56,11 +59,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: |
6.x
7.x
8.x
dotnet-quality: 'ga'
- name: Restore
run: dotnet restore
Expand Down

0 comments on commit f50f030

Please sign in to comment.