Build rust with warnings=errors

This commit is contained in:
Andrew Helwer 2021-09-28 18:51:09 -04:00
parent 652235a6b8
commit 8eef790a61
2 changed files with 7 additions and 3 deletions

View file

@ -70,7 +70,9 @@ jobs:
run: script/build-wasm
- name: Build CLI
run: RUSTFLAGS="-D warnings" cargo build --release
run: |
RUSTFLAGS="-D warnings"
cargo build --release
- name: Set up fixture parsers
run: |
@ -134,7 +136,9 @@ jobs:
run: cargo fmt -- --check
- name: Build CLI
run: RUSTFLAGS="-D warnings" cargo build --release
run: |
$env:RUSTFLAGS="-D warnings"
cargo build --release
- name: Set up fixture parsers
run: |