engage_earn_api/ci/audit.yml
Mitchell Marino 119ea85a66 tweak ci
2023-01-11 19:58:42 -06:00

24 lines
289 B
YAML

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