Skip to content

Commit 1846e08

Browse files
committed
Add fuzz test to CI/CD.
1 parent 5875168 commit 1846e08

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/fuzz.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Fuzz
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- name: Install
12+
run: |
13+
python -m pip install -U pip
14+
python -m pip install .
15+
env:
16+
CFLAGS: '-DDEBUG'
17+
18+
- name: Fuzz
19+
run: python tests/fuzz.py --seed=0:1000

0 commit comments

Comments
 (0)