Skip to content

build(deps): bump ecdsa from 0.16.7 to 0.16.8 #735

build(deps): bump ecdsa from 0.16.7 to 0.16.8

build(deps): bump ecdsa from 0.16.7 to 0.16.8 #735

Workflow file for this run

name: bip32
on:
pull_request:
paths:
- "bip32/**"
- "hkd32/**"
- "Cargo.*"
push:
branches: main
defaults:
run:
working-directory: bip32
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- stable
target:
- armv7a-none-eabi
- thumbv7em-none-eabi
- wasm32-unknown-unknown
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
profile: minimal
- run: cargo build --target ${{ matrix.target }} --release --no-default-features
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features alloc
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features secp256k1
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features alloc,secp256k1
test:
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- 1.65.0 # MSRV
- stable
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
- run: cargo test --release --no-default-features
- run: cargo test --release --no-default-features --features secp256k1,bip39
- run: cargo test --release --no-default-features --features secp256k1-ffi,bip39
- run: cargo test --release
- run: cargo test --release --all-features