File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed
Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1+ name : fuzzing
2+ on :
3+ push :
4+ branches :
5+ - " main"
6+ tags :
7+ - " v*.*.*"
8+ schedule :
9+ - cron : " 0 0 * * *"
10+ workflow_dispatch :
11+
12+ jobs :
13+ fuzzing :
14+ runs-on : ubuntu-latest
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ go :
19+ - ' ^1.20'
20+ - ' ^1.21'
21+ steps :
22+ - name : Check out repository code
23+ uses : actions/checkout@v3
24+ - name : Set up Go
25+ uses : actions/setup-go@v4
26+ with :
27+ go-version : ${{ matrix.go }}
28+ - name : Fuzzing synchro package
29+ run : go test . -fuzz=Fuzz -fuzztime=300s
Original file line number Diff line number Diff line change 3636 uses : codecov/codecov-action@v3
3737 with :
3838 files : ${{ steps.vars.outputs.coverage_txt }}
39- - name : Fuzzing synchro package
40- run : go test . -fuzz=Fuzz -fuzztime=300s
You can’t perform that action at this time.
0 commit comments