build(deps): bump serde from 1.0.204 to 1.0.205 #750
Workflow file for this run
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: hkd32 | |
on: | |
pull_request: | |
paths: | |
- "hkd32/**" | |
- "Cargo.*" | |
push: | |
branches: main | |
defaults: | |
run: | |
working-directory: hkd32 | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.60.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 bech32 | |
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features alloc,bech32 | |
test: | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
toolchain: | |
- 1.60.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 | |
- run: cargo test --release --all-features |