Skip to content

Commit

Permalink
Merge pull request #37 from uji/ci/change-fuzzing-ci-trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Code-Hex authored Jun 10, 2024
2 parents 96e72b0 + 00985c2 commit 5109fce
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/fuzzing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: fuzzing
on:
push:
branches:
- "main"
tags:
- "v*.*.*"
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
fuzzing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- '^1.20'
- '^1.21'
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Fuzzing synchro package
run: go test . -fuzz=Fuzz -fuzztime=300s
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,3 @@ jobs:
uses: codecov/codecov-action@v3
with:
files: ${{ steps.vars.outputs.coverage_txt }}
- name: Fuzzing synchro package
run: go test . -fuzz=Fuzz -fuzztime=300s

0 comments on commit 5109fce

Please sign in to comment.