Skip to content

Commit

Permalink
--locked instead of --frozen
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazk committed Jan 27, 2024
1 parent 82ee3d5 commit a6d0d31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[alias]
build-xtask = "build --frozen --manifest-path ./xtask/Cargo.toml"
xtask = "run --frozen --quiet --manifest-path ./xtask/Cargo.toml --"
x = "run --frozen --quiet --manifest-path ./xtask/Cargo.toml --"
build-xtask = "build --locked --manifest-path ./xtask/Cargo.toml"
xtask = "run --locked --quiet --manifest-path ./xtask/Cargo.toml --"
x = "run --locked --quiet --manifest-path ./xtask/Cargo.toml --"

[target.wasm32-unknown-unknown]
runner = 'wasm-bindgen-test-runner'
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
run: cargo build-xtask

- name: Build docs
run: cargo doc --frozen --all-features
run: cargo doc --locked --all-features

- name: Run tests
run: cargo x test
Expand Down

0 comments on commit a6d0d31

Please sign in to comment.