Skip to content

Commit 9743343

Browse files
committed
fix(CICD): Fixed CICD pipelines
Signed-off-by: Charles d'Avernas <[email protected]>
1 parent ba80b38 commit 9743343

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

.github/workflows/build-dotnet.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ env:
1616
jobs:
1717
build:
1818
runs-on: ubuntu-latest
19-
strategy:
20-
matrix:
21-
dotnet-version: |
22-
8.0.x
23-
9.0.x
24-
2519
steps:
2620
- name: Checkout
2721
uses: actions/checkout@v3
@@ -34,10 +28,12 @@ jobs:
3428
git fetch
3529
git pull
3630
37-
- name: Setup .NET ${{ matrix.dotnet-version }}
31+
- name: Setup .NET
3832
uses: actions/setup-dotnet@v2
3933
with:
40-
dotnet-version: ${{ matrix.dotnet-version }}
34+
dotnet-version: |
35+
8.0.x
36+
9.0.x
4137
4238
- name: Restore dependencies
4339
run: dotnet restore "${{ env.SOLUTION }}"

.github/workflows/test-dotnet.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,16 @@ env:
1616
jobs:
1717
build:
1818
runs-on: ubuntu-latest
19-
strategy:
20-
matrix:
21-
dotnet-version: |
22-
8.0.x
23-
9.0.x
2419
steps:
2520
- name: Checkout
2621
uses: actions/checkout@v3
2722

28-
- name: Setup .NET ${{ matrix.dotnet-version }}
23+
- name: Setup .NET
2924
uses: actions/setup-dotnet@v2
3025
with:
31-
dotnet-version: ${{ matrix.dotnet-version }}
26+
dotnet-version: |
27+
8.0.x
28+
9.0.x
3229
3330
- name: Restore dependencies
3431
run: dotnet restore "${{ env.SOLUTION }}"

0 commit comments

Comments
 (0)