mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-28 06:54:20 +01:00
feat(ci): Add dependency audit to CI tests
This commit is contained in:
parent
8f063c99d5
commit
ad6eb92bbd
1 changed files with 11 additions and 0 deletions
|
@ -270,6 +270,17 @@ test:format:
|
||||||
script:
|
script:
|
||||||
- cargo fmt --all -- --check
|
- cargo fmt --all -- --check
|
||||||
|
|
||||||
|
test:audit:
|
||||||
|
extends: .test-shared-settings
|
||||||
|
allow_failure: true
|
||||||
|
script:
|
||||||
|
- cargo audit --color always || true
|
||||||
|
- cargo audit --stale --json | gitlab-report -p audit > gl-sast-report.json
|
||||||
|
artifacts:
|
||||||
|
when: always
|
||||||
|
reports:
|
||||||
|
sast: gl-sast-report.json
|
||||||
|
|
||||||
test:sytest:
|
test:sytest:
|
||||||
stage: "test"
|
stage: "test"
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
Loading…
Reference in a new issue