mirror of https://github.com/zkat/miette.git
ci: add wasm build check
This commit is contained in:
parent
6ea86a2248
commit
1352dbcbe2
|
|
@ -49,6 +49,19 @@ jobs:
|
||||||
if: matrix.rust == '1.70.0'
|
if: matrix.rust == '1.70.0'
|
||||||
run: cargo test --all --verbose --features ${{matrix.features}} no-format-args-capture
|
run: cargo test --all --verbose --features ${{matrix.features}} no-format-args-capture
|
||||||
|
|
||||||
|
wasm:
|
||||||
|
name: Check Wasm build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install Rust
|
||||||
|
uses: dtolnay/rust-toolchain@master
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
targets: wasm32-unknown-unknown
|
||||||
|
- name: Check wasm target
|
||||||
|
run: cargo check --target wasm32-unknown-unknown --features fancy
|
||||||
|
|
||||||
miri:
|
miri:
|
||||||
name: Miri
|
name: Miri
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue