diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b926427..054ebb8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,19 @@ +image: rust:1.59-alpine3.15 + +stages: + - test + test: - image: rust:1.59-alpine3.15 + stage: test before_script: - apk --no-cache add musl-dev script: - - cargo test \ No newline at end of file + - cargo test + +audit: + stage: test + before_script: + - apk --no-cache add musl-dev + - cargo install cargo-audit + script: + - cargo audit \ No newline at end of file