mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
431 B
YAML
22 lines
431 B
YAML
check:
|
|
stage: check-compile
|
|
tags:
|
|
- veloren-docker
|
|
script:
|
|
- RUSTFLAGS="-D warnings" cargo check --locked
|
|
|
|
code-quality:
|
|
stage: check-compile
|
|
tags:
|
|
- veloren-docker
|
|
script:
|
|
- cargo clippy -- --warn clippy::all
|
|
- cargo fmt --all -- --check
|
|
|
|
security:
|
|
stage: check-compile
|
|
allow_failure: true
|
|
tags:
|
|
- veloren-docker
|
|
script:
|
|
- cargo audit |