Skip to content

Commit dd1d11b

Browse files
committed
update workflow
1 parent 3ec9428 commit dd1d11b

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/build-and-test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
DOTNET_VERSION: ["9.0.x", "8.0.x"]
20+
DOTNET_VERSION: ["10.0.x", "9.0.x", "8.0.x"]
2121

2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v4
2626
with:
2727
dotnet-version: |
28+
10.0.x
2829
9.0.x
2930
8.0.x
3031
@@ -39,6 +40,9 @@ jobs:
3940
- if: matrix.DOTNET_VERSION == '9.0.x'
4041
run: echo "DOTNET_TFM=net9.0" >> $GITHUB_ENV
4142

43+
- if: matrix.DOTNET_VERSION == '10.0.x'
44+
run: echo "DOTNET_TFM=net10.0" >> $GITHUB_ENV
45+
4246
- name: Restore dependencies
4347
run: dotnet restore
4448

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "v[0-9]+.[0-9]+.[0-9]+*"
77

88
env:
9-
DOTNET_VERSION: "9.0.x"
9+
DOTNET_VERSION: "10.0.x"
1010
DOTNET_NOLOGO: true
1111

1212
jobs:

0 commit comments

Comments
 (0)