chore: use serde_json exported from bdk_bitcoind_rpc #196
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: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
schedule: | |
- cron: '0 0 * * 0' # Once per week | |
jobs: | |
security_audit: | |
name: Security audit | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: bdk-ffi | |
steps: | |
- name: "Check out PR branch" | |
uses: actions/checkout@v3 | |
- name: "Run audit" | |
run: | | |
cargo install cargo-audit | |
cargo-audit audit |