Skip to content

build(deps): bump zerocopy from 0.7.32 to 0.7.34 #684

build(deps): bump zerocopy from 0.7.32 to 0.7.34

build(deps): bump zerocopy from 0.7.32 to 0.7.34 #684

Workflow file for this run

name: rfc6979
on:
pull_request:
paths:
- "rfc6979/**"
- "Cargo.*"
push:
branches: master
defaults:
run:
working-directory: rfc6979
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- thumbv7em-none-eabi
- wasm32-unknown-unknown
rust:
- 1.72.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.72.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo check --all-features
- run: cargo test