engage_earn_api/ci/audit.yml
2022-12-18 21:04:23 -06:00

23 lines
269 B
YAML

platform: linux
image_resource:
type: registry-image
source: {repository: rust}
# This should cache cargo audit
caches:
- path: "./.cargo/"
inputs:
- name: repo
run:
path: sh
args:
- -exc
- |
cargo install cargo-audit
cargo audit
dir: "repo"