implement printSchemaAndCapabilities #4
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: Security audit | |
on: | |
pull_request: | |
jobs: | |
audit: | |
name: Security Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
# this defaults to "-D warnings", making warnings fail the entire build. | |
# setting to empty strng to allow builds with warnings | |
# todo: consider removing this, and disallowing pushing with warnings? | |
rustflags: "" | |
# we don't use the audit-check action, because it overwrites our lockfile before checking | |
# ref: https://github.com/rustsec/audit-check/issues/15 | |
# todo: once that is fixed, move to audit-check, and set up regular audit check on top of these PR ones | |
- run: cargo install cargo-audit --locked | |
- run: cargo audit |