Skip to content

build(deps): bump serde from 1.0.163 to 1.0.174 #537

build(deps): bump serde from 1.0.163 to 1.0.174

build(deps): bump serde from 1.0.163 to 1.0.174 #537

Workflow file for this run

name: signatory
on:
pull_request:
paths:
- "signatory/**"
- "Cargo.*"
push:
branches: main
defaults:
run:
working-directory: signatory
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
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
- run: cargo test --release --features ecdsa
- run: cargo test --release --features ed25519
- run: cargo test --release --features nistp256
- run: cargo test --release --features secp256k1
- run: cargo test --release --all-features