From 3a82aa384fc8d9eebee9b8e7eca8a7b4ba9982be Mon Sep 17 00:00:00 2001 From: Acrimon Date: Mon, 28 Oct 2019 19:18:02 +0100 Subject: [PATCH] Added basic security job that just runs audit. --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9126020f13..4c05c9d03e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -140,6 +140,14 @@ code-quality: - cargo clippy -- --warn clippy::all - cargo fmt --all -- --check +security: + stage: check-compile + tags: + - veloren-docker + script: + cargo install cargo-audit + cargo audit + # -- # -- post build