Skip to content

add (simple) docs to all relevant functions/structs #29

add (simple) docs to all relevant functions/structs

add (simple) docs to all relevant functions/structs #29

Workflow file for this run

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 rtcp_from_bytes -- -max_total_time=20'