Skip to content

Merge pull request #360 from kdarkhan/fuzz-docs #298

Merge pull request #360 from kdarkhan/fuzz-docs

Merge pull request #360 from kdarkhan/fuzz-docs #298

Workflow file for this run

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