Fuzz Testing #146
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fuzz Testing | |
on: | |
# Perform Fuzz testing on PRs and on a daily basis. Daily will continue to | |
# look for problems. Doing this on PRs will look for issues introduced in | |
# a change. | |
pull_request: | |
schedule: | |
- cron: '33 23 * * *' # Run at 11:33 every day | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Fuzz | |
run: make fuzz |