Skip to content

feat!: add hardware wallet support #582

feat!: add hardware wallet support

feat!: add hardware wallet support #582

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
args: --all-features
- name: test/release
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features
- name: docs build
uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features
- name: bench
uses: actions-rs/cargo@v1
with:
command: check
args: --benches --all-features