Skip to content

Merge pull request #359 from anuraaga/patch-1 #294

Merge pull request #359 from anuraaga/patch-1

Merge pull request #359 from anuraaga/patch-1 #294

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