Skip to content

Commit e76fcc9

Browse files
committed
ci: fix indentation in WASM
Incorrect indentation causes Github to report "syntax error on line 1" and silently disable all of the checks in this library. For example, see https://github.com/apoelstra/rust-secp256k1/actions/runs/17178718613/workflow
1 parent 0d0263e commit e76fcc9

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -253,19 +253,19 @@ jobs:
253253
- name: "Run test on i686"
254254
run: cargo test --target i686-unknown-linux-gnu
255255

256-
WASM:
257-
name: WASM - stable toolchain
258-
runs-on: ubuntu-latest
259-
strategy:
260-
fail-fast: false
261-
# Note we do not use the recent lock file for wasm testing.
262-
steps:
263-
- name: "Checkout repo"
264-
uses: actions/checkout@v4
265-
- name: "Select toolchain"
266-
uses: dtolnay/rust-toolchain@stable
267-
- name: "Run wasm script"
268-
run: ./contrib/wasm.sh
256+
WASM:
257+
name: WASM - stable toolchain
258+
runs-on: ubuntu-latest
259+
strategy:
260+
fail-fast: false
261+
# Note we do not use the recent lock file for wasm testing.
262+
steps:
263+
- name: "Checkout repo"
264+
uses: actions/checkout@v4
265+
- name: "Select toolchain"
266+
uses: dtolnay/rust-toolchain@stable
267+
- name: "Run wasm script"
268+
run: ./contrib/wasm.sh
269269

270270
NoStd: # 1 job, run no-std test from script.
271271
name: no-std - nightly toolchain

0 commit comments

Comments
 (0)