File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 24
24
with :
25
25
sweep-cache : true
26
26
- run : |
27
- cargo test --locked -- workspace --all-features --all-targets
27
+ cargo test --workspace --all-features --all-targets
28
28
# Workaround for https://github.com/rust-lang/cargo/issues/6669
29
- cargo test --locked -- workspace --all-features --doc
29
+ cargo test --workspace --all-features --doc
30
30
31
31
clippy :
32
32
name : Clippy
41
41
- uses : Leafwing-Studios/cargo-cache@v2
42
42
with :
43
43
sweep-cache : true
44
- - run : cargo clippy --locked -- workspace --all-targets --all-features -- --deny warnings
44
+ - run : cargo clippy --workspace --all-targets --all-features -- --deny warnings
45
45
46
46
format :
47
47
name : Format
65
65
- uses : Leafwing-Studios/cargo-cache@v2
66
66
with :
67
67
sweep-cache : true
68
- - run : cargo doc --locked -- workspace --all-features --document-private-items --no-deps
68
+ - run : cargo doc --workspace --all-features --document-private-items --no-deps
Original file line number Diff line number Diff line change @@ -103,11 +103,11 @@ jobs:
103
103
- if : ${{ matrix.platform == 'web' }}
104
104
run : |
105
105
cargo binstall --no-confirm trunk wasm-bindgen-cli wasm-opt
106
- trunk build --locked -- release --dist '${{ env.app }}'
106
+ trunk build --release --dist '${{ env.app }}'
107
107
- if : ${{ matrix.platform != 'web' }}
108
108
run : |
109
109
for target in ${{ matrix.targets }}; do
110
- cargo build --locked -- profile='${{ matrix.profile }}' --target="${target}" --no-default-features --features='${{ matrix.features }}'
110
+ cargo build --profile='${{ matrix.profile }}' --target="${target}" --no-default-features --features='${{ matrix.features }}'
111
111
mv target/"${target}"/'${{ matrix.profile }}/${{ env.cargo_build_binary_name }}${{ matrix.binary_ext }}' tmp/binary/"${target}"'${{ matrix.binary_ext }}'
112
112
done
113
113
- if : ${{ matrix.platform != 'web' }}
You can’t perform that action at this time.
0 commit comments