This commit is contained in:
Andy Grove 2019-10-17 20:41:49 -06:00
parent 0687d3aca8
commit a2613f9dd1
2 changed files with 2 additions and 2 deletions

View file

@ -11,6 +11,7 @@ jobs:
- uses: actions/checkout@v1
- name: Setup Rust
run: |
rustup toolchain install nightly && rustup component add --toolchain nightly rustfmt
rustup toolchain install stable
rustup override set stable
# Clippy must be run first, as its lints are only triggered during
@ -21,7 +22,6 @@ jobs:
# run: cargo clippy -- --all-targets --all-features -- -D warnings
- name: Check formatting
run: |
rustup toolchain install nightly && rustup component add --toolchain nightly rustfmt
cargo +nightly fmt -- --check --config-path <(echo 'license_template_path = "HEADER"')
- name: Build
run: cargo build --verbose