File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 8
8
name : Build & Test
9
9
runs-on : ubuntu-latest
10
10
timeout-minutes : 15
11
- strategy :
12
- matrix :
13
- dotnet-version : [ '8.0.1', '9.0.0' ]
14
11
steps :
15
12
- name : Checkout
16
13
uses : actions/checkout@v3
17
14
18
- - name : Setup .NET Core SDK ${{ matrix.dotnet-version }}
15
+ - name : Setup .NET Core SDK 8.0
19
16
uses : actions/setup-dotnet@v3
20
17
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
22
24
23
25
- name : Install dependencies
24
- run : dotnet restore -p:TargetFramework=net${{ matrix.dotnet-version }}
26
+ run : dotnet restore
25
27
26
28
- name : Build
27
29
run : dotnet build --configuration Release --no-restore
You can’t perform that action at this time.
0 commit comments