Skip to content

Merge pull request #362 from alexcrichton/remove-cfg-fuzzing-repro #301

Merge pull request #362 from alexcrichton/remove-cfg-fuzzing-repro

Merge pull request #362 from alexcrichton/remove-cfg-fuzzing-repro #301

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