Update .gitlab-ci.yml file

This commit is contained in:
Sebastian Hugentobler 2022-03-19 09:15:10 +00:00
parent 65555fb5c7
commit 9b40d46f17

View File

@ -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
- cargo test
audit:
stage: test
before_script:
- apk --no-cache add musl-dev
- cargo install cargo-audit
script:
- cargo audit