Skip to content

Commit

Permalink
Add fuzz test to CI/CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoodsend committed Feb 13, 2022
1 parent 0f4e793 commit 6e7eeab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/fuzz.yml
@@ -0,0 +1,19 @@
name: Fuzz

on: [push, pull_request, workflow_dispatch]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install
run: |
python -m pip install -U pip
python -m pip install .
env:
CFLAGS: '-DDEBUG'

- name: Fuzz
run: python tests/fuzz.py --seed=0:1000

0 comments on commit 6e7eeab

Please sign in to comment.