Fix minor typo #99
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: Quick Fuzzing | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
fuzz: | |
name: Fuzzing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- name: Install cargo-fuzz | |
uses: actions-rs/cargo@v1 | |
with: | |
command: 'install' | |
args: 'cargo-fuzz' | |
- name: Run cargo-fuzz | |
uses: actions-rs/cargo@v1 | |
with: | |
command: 'fuzz' | |
args: 'run parse_candidate -- -max_total_time=20' | |