Skip to content

Commit 5355984

Browse files
committed
unnecessary --no-default-features flag is removed from ci.yml
1 parent 8a4d22d commit 5355984

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
- name: Build-32bit
4040
run: cargo build --verbose --target i686-unknown-linux-musl
4141
- name: Build-wasm
42-
run: cargo build --verbose --target wasm32v1-none --no-default-features
42+
run: cargo build --verbose --target wasm32v1-none
4343

4444
- name: Test
4545
run: cargo test --verbose
4646
- name: Test-32bit
4747
run: cargo test --verbose --target i686-unknown-linux-musl
4848
- name: Check-wasm
49-
run: cargo check --verbose --target wasm32v1-none --no-default-features
49+
run: cargo check --verbose --target wasm32v1-none
5050

5151
- name: Clippy
5252
run: cargo clippy -- -D warnings --verbose
@@ -55,4 +55,4 @@ jobs:
5555
run: cargo +nightly miri test --lib --bins --tests --verbose
5656

5757
- name: NoStd
58-
run: cargo +nightly no-std-check --no-default-features
58+
run: cargo +nightly no-std-check

0 commit comments

Comments
 (0)