Skip to content

chore: update dependencies #619

chore: update dependencies

chore: update dependencies #619

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: checkout
uses: actions/checkout@v2
- name: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: test/debug
uses: actions-rs/cargo@v1
with:
command: test
- name: test/release
uses: actions-rs/cargo@v1
with:
command: test
args: --release
- name: test/debug features
uses: actions-rs/cargo@v1
with:
command: test
# TODO: re-add all features once https://github.com/rust-lang/packed_simd/pull/341 is used by dalek
# args: --all-features
args: --features wasm --features ffi --features borsh
- name: test/release features
uses: actions-rs/cargo@v1
with:
command: test
# TODO: re-add all features once https://github.com/rust-lang/packed_simd/pull/341 is used by dalek
# args: --release --all-features
args: --release --features wasm --features ffi --features borsh
- name: docs build
uses: actions-rs/cargo@v1
with:
command: doc
args: --features wasm --features ffi
- name: bench
uses: actions-rs/cargo@v1
with:
command: check
args: --benches