File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
build :
15
15
runs-on : ubuntu-latest
16
16
17
- strategy :
18
- matrix :
19
- dotnet-version : [7.0.x, 8.0.x] # Include .NET 7 and .NET 8 versions
17
+ # strategy:
18
+ # matrix:
19
+ # dotnet-version: [7.0.x, 8.0.x] # Include .NET 7 and .NET 8 versions
20
20
21
21
steps :
22
22
- name : Checkout code
@@ -25,13 +25,13 @@ jobs:
25
25
- name : Setup .NET
26
26
uses : actions/setup-dotnet@v3
27
27
with :
28
- dotnet-version : ${{ matrix.dotnet-version }}
28
+ dotnet-version : 8.0.x
29
29
30
30
- name : Restore dependencies
31
31
run : dotnet restore src/PolygonApi/PolygonApi.csproj
32
32
33
33
- name : Build
34
- run : dotnet build --configuration Release --no-restore --framework ${{ matrix.dotnet-version }}
34
+ run : dotnet build --configuration Release --no-restore
35
35
36
36
- name : Run tests
37
37
run : dotnet test --configuration Release --no-restore --verbosity normal
You can’t perform that action at this time.
0 commit comments