ci: disable test step (#151)

This commit is contained in:
Daniëlle Huisman 2025-08-27 09:33:05 +02:00 committed by GitHub
parent 8b4da4f131
commit 8f9939beb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,19 +48,20 @@ jobs:
- name: Check formatting - name: Check formatting
run: cargo fmt --all --check run: cargo fmt --all --check
test: # This repository has no tests, so save some time by skipping test builds for all components.
name: Test # test:
runs-on: ubuntu-latest # name: Test
# runs-on: ubuntu-latest
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v5 # uses: actions/checkout@v5
- name: Set up Rust toolchain # - name: Set up Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1 # uses: actions-rust-lang/setup-rust-toolchain@v1
with: # with:
components: clippy, rustfmt # components: clippy, rustfmt
target: wasm32-unknown-unknown # target: wasm32-unknown-unknown
- name: Test # - name: Test
run: cargo test --all-features --locked --release # run: cargo test --all-features --locked --release