Skip to content

Commit 40eb364

Browse files
committed
revert matrix changes
1 parent 7d11508 commit 40eb364

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616

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
2020

2121
steps:
2222
- name: Checkout code
@@ -25,13 +25,13 @@ jobs:
2525
- name: Setup .NET
2626
uses: actions/setup-dotnet@v3
2727
with:
28-
dotnet-version: ${{ matrix.dotnet-version }}
28+
dotnet-version: 8.0.x
2929

3030
- name: Restore dependencies
3131
run: dotnet restore src/PolygonApi/PolygonApi.csproj
3232

3333
- name: Build
34-
run: dotnet build --configuration Release --no-restore --framework ${{ matrix.dotnet-version }}
34+
run: dotnet build --configuration Release --no-restore
3535

3636
- name: Run tests
3737
run: dotnet test --configuration Release --no-restore --verbosity normal

0 commit comments

Comments
 (0)