Use new meson cargo dependency #32
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
on: [push] | |
name: Quick Fuzzing | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
check: | |
name: | |
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 stun_msg_from_bytes -- -max_total_time=20' | |
- name: Run cargo-fuzz | |
uses: actions-rs/cargo@v1 | |
with: | |
command: 'fuzz' | |
args: 'run parse_candidate -- -max_total_time=20' | |