Skip to content

fix rand/random feature use in secp256k1_ecdsa & tests (#213) #628

fix rand/random feature use in secp256k1_ecdsa & tests (#213)

fix rand/random feature use in secp256k1_ecdsa & tests (#213) #628

Workflow file for this run

name: Format
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
paths-ignore:
- 'docs/**'
jobs:
format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project:
[
crypto,
]
steps:
- uses: actions/checkout@v2
- name: Install rustfmt with nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path=Cargo.toml --all -- --check