Skip to content

Commit 5109fce

Browse files
authored
Merge pull request #37 from uji/ci/change-fuzzing-ci-trigger
2 parents 96e72b0 + 00985c2 commit 5109fce

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

.github/workflows/fuzzing.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ jobs:
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

0 commit comments

Comments
 (0)