Work around rustc bug in CI

This commit is contained in:
Dirkjan Ochtman 2022-09-07 10:02:07 +02:00
parent c8cc5f5a48
commit 0f22e36844
1 changed files with 6 additions and 0 deletions

View File

@ -30,10 +30,14 @@ jobs:
with:
command: build
args: --all-features --all-targets
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
lint:
runs-on: ubuntu-latest
@ -54,6 +58,8 @@ jobs:
with:
command: clippy
args: --workspace --all-targets --all-features -- -D warnings
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
audit:
runs-on: ubuntu-latest