We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e17ba44 commit e7bb38eCopy full SHA for e7bb38e
1 file changed
.github/workflows/dotnet-test.yml
@@ -11,21 +11,22 @@ on:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ dotnet-version: [ '8.0.x', '9.0.x' ]
19
+
20
steps:
21
- uses: actions/checkout@v4
22
- - name: Setup .NET 8.0
23
+ - name: Setup .NET ${{ matrix.dotnet-version }}
24
uses: actions/setup-dotnet@v4
25
with:
- dotnet-version: 8.0.x
26
+ dotnet-version: ${{ matrix.dotnet-version }}
27
- - name: Setup .NET 9.0
- uses: actions/setup-dotnet@v4
- with:
28
- dotnet-version: 9.0.x
+ - name: Display dotnet version
29
+ run: dotnet --version
30
31
- name: Restore dependencies
32
run: dotnet restore
0 commit comments