File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 66 branches : ["master"]
77 pull_request :
88 branches : ["master"]
9-
10- env :
11- dotnet-version : 9.0
129
1310jobs :
1411 AFL :
1512 runs-on : ubuntu-latest
1613
14+ strategy :
15+ matrix :
16+ dotnet-version : [8.0, 9.0]
17+
1718 steps :
1819 - uses : actions/checkout@v4
1920 - uses : actions/setup-dotnet@v4
2021 with :
21- dotnet-version : ${{ env .dotnet-version }}
22+ dotnet-version : ${{ matrix .dotnet-version }}
2223 - name : Install AFL
2324 run : ./scripts/install.sh
2425 - name : Disable core dumps
@@ -30,10 +31,14 @@ jobs:
3031 libFuzzer :
3132 runs-on : windows-latest
3233
34+ strategy :
35+ matrix :
36+ dotnet-version : [8.0, 9.0]
37+
3338 steps :
3439 - uses : actions/checkout@v4
3540 - uses : actions/setup-dotnet@v4
3641 with :
37- dotnet-version : ${{ env .dotnet-version }}
42+ dotnet-version : ${{ matrix .dotnet-version }}
3843 - name : Run libFuzzer tests
3944 run : ./scripts/test-libfuzzer.ps1
You can’t perform that action at this time.
0 commit comments