We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528c762 commit 9b5ed18Copy full SHA for 9b5ed18
1 file changed
.github/workflows/dotnet.yml
@@ -11,15 +11,14 @@ jobs:
11
AFL:
12
runs-on: ubuntu-latest
13
14
- strategy:
15
- matrix:
16
- dotnet-version: [8.0, 9.0]
+ env:
+ dotnet-version: 9.0
17
18
steps:
19
- uses: actions/checkout@v4
20
- uses: actions/setup-dotnet@v4
21
with:
22
- dotnet-version: ${{ matrix.dotnet-version }}
+ dotnet-version: ${{ env.dotnet-version }}
23
- name: Install AFL
24
run: ./scripts/install.sh
25
- name: Disable core dumps
@@ -33,7 +32,7 @@ jobs:
33
32
34
strategy:
35
matrix:
36
+ dotnet-version: ["8.0", "9.0"]
37
38
39
0 commit comments