Skip to content

Commit

Permalink
ci: fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
cijiugechu committed Jan 19, 2024
1 parent 3d95d74 commit eba47f6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Fuzz

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # Run everyweek

jobs:
fuzz:
name: Cargo Fuzz
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install cargo-fuzz
uses: taiki-e/install-action@v2
with:
tool: cargo-fuzz

- name: Nightly
run: rustup default nightly

- name: Run Fuzzer
run: cargo +nightly fuzz run semver -- -only_ascii=1 -max_total_time=120 -max_len=30

0 comments on commit eba47f6

Please sign in to comment.