Skip to content

Commit 35a3959

Browse files
committed
support net 9 in ci
1 parent f705c37 commit 35a3959

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ permissions:
1313
jobs:
1414
build-and-test:
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
dotnet-version: ['8.0.203', '9.0.101']
1619

1720
steps:
1821
- name: Checkout repository
@@ -21,7 +24,7 @@ jobs:
2124
- name: Setup .NET
2225
uses: actions/setup-dotnet@v4
2326
with:
24-
dotnet-version: 8.0.203
27+
dotnet-version: ${{ matrix.dotnet-version }}
2528

2629
- name: Setup Node.js
2730
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)