We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f48f11 commit 5669d82Copy full SHA for 5669d82
.github/workflows/a2l-fuzzing.yml
@@ -19,5 +19,4 @@ jobs:
19
go-version: 1.18
20
21
- name: Run A2L Fuzzing
22
- run: cd a2l
23
- run: go test -fuzz=./a2l/FuzzParseA2L -fuzztime=30s -v
+ run: go test ./a2l -fuzz=FuzzParseA2l -fuzztime=30s -v
.github/workflows/ihex32-fuzzing.yml
- run: cd ihex32
- run: go test -fuzz=./ihex32/FuzzParseHex -fuzztime=30s -v
+ run: go test ./ihex32 -fuzz=FuzzParseHex -fuzztime=30s -v
.github/workflows/srec19-fuzzing.yml
- run: cd srec19
- run: go test -fuzz=./srec19/FuzzParseHex -fuzztime=30s -v
+ run: go test ./srec19 -fuzz=FuzzParseHex -fuzztime=30s -v
0 commit comments