Skip to content

Commit 442e5e2

Browse files
committed
build: fix ci
1 parent e81c870 commit 442e5e2

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

.github/workflows/querykit-integration-tests.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ on: [pull_request, workflow_dispatch]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8-
strategy:
9-
matrix:
10-
dotnet-version: ['10.0.x']
118
steps:
12-
- uses: actions/checkout@v2
13-
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
14-
uses: actions/setup-dotnet@v1.7.2
9+
- uses: actions/checkout@v4
10+
- name: Setup .NET Core SDK
11+
uses: actions/setup-dotnet@v4
1512
with:
16-
dotnet-version: ${{ matrix.dotnet-version }}
13+
dotnet-version: |
14+
9.0.x
15+
10.0.x
1716
1817
- name: Install dependencies
1918
run: dotnet restore

.github/workflows/querykit-unit-tests.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ on: [pull_request, workflow_dispatch]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8-
strategy:
9-
matrix:
10-
dotnet-version: ['10.0.x']
118
steps:
12-
- uses: actions/checkout@v2
13-
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
14-
uses: actions/setup-dotnet@v1.7.2
9+
- uses: actions/checkout@v4
10+
- name: Setup .NET Core SDK
11+
uses: actions/setup-dotnet@v4
1512
with:
16-
dotnet-version: ${{ matrix.dotnet-version }}
13+
dotnet-version: |
14+
9.0.x
15+
10.0.x
1716
1817
- name: Install dependencies
1918
run: dotnet restore

0 commit comments

Comments
 (0)