ci: Fix wasm unit test #299
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
env: | |
# Minimum Supported Rust Version for backon | |
BACKON_MSRV: "1.70" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy --workspace --all-features --all-targets -- -D warnings | |
msrv-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: rustup toolchain install ${BACKON_MSRV} | |
- name: Check MSRV | |
run: cargo +${BACKON_MSRV} build --workspace | |
env: | |
RUST_LOG: DEBUG | |
RUST_BACKTRACE: full | |
unit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: cargo test --all-features --workspace | |
env: | |
RUST_LOG: DEBUG | |
RUST_BACKTRACE: full | |
nightly-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install nightly | |
- name: Test | |
run: cargo +nightly test --all-features --workspace | |
env: | |
RUST_LOG: DEBUG | |
RUST_BACKTRACE: full | |
RUSTDOCFLAGS: "--cfg docsrs" | |
wasm-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# We can remove this once https://github.com/rustwasm/wasm-bindgen/issues/4211 fixed. | |
- name: Install and pin Rust 1.81 | |
run: rustup toolchain install 1.81 && rustup default 1.81 | |
- name: Install | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- run: wasm-pack test --node --all-features -- --skip blocking | |
working-directory: backon | |
env: | |
RUST_BACKTRACE: full |