mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 20:13:59 -05:00
* Update to Go 1.23 * Update bazel version * Update rules_go * Use toolchains_protoc * Update go_honnef_go_tools * Update golang.org/x/tools * Fix violations of SA3000 * Update errcheck by re-exporting the upstream repo * Remove problematic ginkgo and gomega test helpers. Rewrote tests without these test libraries. * Update go to 1.23.5 * gofmt with go1.23.5 * Revert Patch * Unclog * Update for go 1.23 support * Fix Lint Issues * Gazelle * Fix Build * Fix Lint * no lint * Fix lint * Fix lint * Disable intrange * Preston's review --------- Co-authored-by: Preston Van Loon <preston@pvl.dev>
46 lines
1012 B
YAML
46 lines
1012 B
YAML
name: "fuzz"
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 12 * * *"
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
list:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 180
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23.5'
|
|
- id: list
|
|
uses: shogo82148/actions-go-fuzz/list@v0
|
|
with:
|
|
tags: fuzz,develop
|
|
outputs:
|
|
fuzz-tests: ${{steps.list.outputs.fuzz-tests}}
|
|
|
|
fuzz:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 360
|
|
needs: list
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include: ${{fromJson(needs.list.outputs.fuzz-tests)}}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23.5'
|
|
- uses: shogo82148/actions-go-fuzz/run@v0
|
|
with:
|
|
packages: ${{ matrix.package }}
|
|
fuzz-regexp: ${{ matrix.func }}
|
|
fuzz-time: "20m"
|
|
tags: fuzz,develop
|