Bump patch version #572
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: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
ci: | |
env: | |
RUST_BACKTRACE: 1 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: Swatinem/rust-cache@v1 | |
- name: Test | |
run: cargo test --all --verbose --all-features | |
wasm: | |
env: | |
RUST_BACKTRACE: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: "wasm32-unknown-unknown" | |
- uses: Swatinem/rust-cache@v1 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.21 | |
- name: Compile and test wasm | |
run: | | |
cd wasm_test | |
cargo +nightly build --target wasm32-unknown-unknown | |
node test.js |