cargo-fuzz 0.13.2

A `cargo` subcommand for fuzzing with `libFuzzer`! Easy to use!
name: "ci"
on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
          toolchain: nightly
          profile: minimal
          default: true
          components: rustfmt, rust-src, llvm-tools-preview
    - uses: actions-rs/cargo@v1
      with:
        command: fmt
        args: --all -- --check
    - uses: actions-rs/cargo@v1
      with:
        command: install
        args: cargo-binutils
    - uses: actions-rs/cargo@v1
      with:
        command: test
        args: --verbose
      env:
        RUST_BACKTRACE: 1