Ensure that the lockfile is up to date on CI
So build failures related to this can't happen again.
This commit is contained in:
parent
37cd6b34f1
commit
369ef886e4
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
@ -54,8 +54,9 @@ jobs:
|
||||||
uses: dtolnay/rust-toolchain@nightly
|
uses: dtolnay/rust-toolchain@nightly
|
||||||
- name: Run the tests
|
- name: Run the tests
|
||||||
# Don't use --all-features as that will enable a whole bunch of
|
# Don't use --all-features as that will enable a whole bunch of
|
||||||
# conflicting iced features
|
# conflicting iced features. `--locked` ensures that the lockfile is up
|
||||||
run: cargo test --workspace --features "simd,standalone,zstd"
|
# to date. We only really need this in one of the builds.
|
||||||
|
run: cargo test --locked --workspace --features "simd,standalone,zstd"
|
||||||
|
|
||||||
# This makes sure that NIH-plug can be compiled without VST3 support
|
# This makes sure that NIH-plug can be compiled without VST3 support
|
||||||
build-without-vst3:
|
build-without-vst3:
|
||||||
|
|
Loading…
Reference in a new issue