Skip to content

Commit

Permalink
Ensure that the lockfile is up to date on CI
Browse files Browse the repository at this point in the history
So build failures related to this can't happen again.
  • Loading branch information
robbert-vdh committed Mar 10, 2024
1 parent 37cd6b3 commit 369ef88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -54,8 +54,9 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
- name: Run the tests
# Don't use --all-features as that will enable a whole bunch of
# conflicting iced features
run: cargo test --workspace --features "simd,standalone,zstd"
# conflicting iced features. `--locked` ensures that the lockfile is up
# 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
build-without-vst3:
Expand Down

0 comments on commit 369ef88

Please sign in to comment.