Work around rustc bug in CI
This commit is contained in:
parent
c8cc5f5a48
commit
0f22e36844
|
@ -30,10 +30,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --all-features --all-targets
|
args: --all-features --all-targets
|
||||||
|
env:
|
||||||
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --all-features
|
args: --all-features
|
||||||
|
env:
|
||||||
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -54,6 +58,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --workspace --all-targets --all-features -- -D warnings
|
args: --workspace --all-targets --all-features -- -D warnings
|
||||||
|
env:
|
||||||
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
||||||
|
|
||||||
audit:
|
audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue