crypto: add secp256k1
, p256
sigs
#163
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: audit | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: install cargo-audit | |
run: cargo install cargo-audit | |
- name: audit dependencies | |
run: cargo audit |