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 6
6
branches : ["master"]
7
7
pull_request :
8
8
branches : ["master"]
9
-
10
- env :
11
- dotnet-version : 9.0
12
9
13
10
jobs :
14
11
AFL :
15
12
runs-on : ubuntu-latest
16
13
14
+ strategy :
15
+ matrix :
16
+ dotnet-version : [8.0, 9.0]
17
+
17
18
steps :
18
19
- uses : actions/checkout@v4
19
20
- uses : actions/setup-dotnet@v4
20
21
with :
21
- dotnet-version : ${{ env .dotnet-version }}
22
+ dotnet-version : ${{ matrix .dotnet-version }}
22
23
- name : Install AFL
23
24
run : ./scripts/install.sh
24
25
- name : Disable core dumps
@@ -30,10 +31,14 @@ jobs:
30
31
libFuzzer :
31
32
runs-on : windows-latest
32
33
34
+ strategy :
35
+ matrix :
36
+ dotnet-version : [8.0, 9.0]
37
+
33
38
steps :
34
39
- uses : actions/checkout@v4
35
40
- uses : actions/setup-dotnet@v4
36
41
with :
37
- dotnet-version : ${{ env .dotnet-version }}
42
+ dotnet-version : ${{ matrix .dotnet-version }}
38
43
- name : Run libFuzzer tests
39
44
run : ./scripts/test-libfuzzer.ps1
You can’t perform that action at this time.
0 commit comments