Skip to content

Prep 0.21.3 release, downgrading wasm-bindgen to compatible version (… #519

Prep 0.21.3 release, downgrading wasm-bindgen to compatible version (…

Prep 0.21.3 release, downgrading wasm-bindgen to compatible version (… #519

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
check:
name: check (${{ matrix.rust }})
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
id: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Update Dependencies
uses: actions-rs/cargo@v1
with:
command: update
- name: Cache dependencies
env:
rustc-hash: ${{ steps.toolchain.outputs.rustc_hash }}
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ env.rustc-hash }}-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo check
uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: check
test:
name: test (${{ matrix.rust }})
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
id: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Update Dependencies
uses: actions-rs/cargo@v1
with:
command: update
- name: Cache dependencies
env:
rustc-hash: ${{ steps.toolchain.outputs.rustc_hash }}
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ env.rustc-hash }}-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo test
uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: test
args: --all-features