libfuzzer-sys 0.4.7

A wrapper around LLVM's libFuzzer runtime.
Documentation
name: Rust

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1

    - name: Install nightly Rust
      run: |
        rustup toolchain install nightly
        rustup default nightly

    - name: Check rustfmt
      run: |
        rustup component add rustfmt --toolchain stable
        cargo +stable fmt --all -- --check

    - run: cargo install cargo-fuzz

    - name: Run tests
      run: ./ci/script.sh