Skip to content

Commit 8b5c8bd

Browse files
committed
ci: fix
1 parent 3699a50 commit 8b5c8bd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,22 @@ jobs:
88
name: Build & Test
99
runs-on: ubuntu-latest
1010
timeout-minutes: 15
11-
strategy:
12-
matrix:
13-
dotnet-version: [ '8.0.1', '9.0.0' ]
1411
steps:
1512
- name: Checkout
1613
uses: actions/checkout@v3
1714

18-
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
15+
- name: Setup .NET Core SDK 8.0
1916
uses: actions/setup-dotnet@v3
2017
with:
21-
dotnet-version: ${{ matrix.dotnet-version }}
18+
dotnet-version: 8.0.x
19+
20+
- name: Setup .NET Core SDK 9.0
21+
uses: actions/setup-dotnet@v3
22+
with:
23+
dotnet-version: 9.0.x
2224

2325
- name: Install dependencies
24-
run: dotnet restore -p:TargetFramework=net${{ matrix.dotnet-version }}
26+
run: dotnet restore
2527

2628
- name: Build
2729
run: dotnet build --configuration Release --no-restore

0 commit comments

Comments
 (0)