mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
632 B
YAML
22 lines
632 B
YAML
# cargo clippy is a superset of cargo check, so we don't check manually
|
|
code-quality:
|
|
extends: .recompile-branch
|
|
stage: check
|
|
script:
|
|
- ln -s /dockercache/cache-all target
|
|
- rm -r target/debug/incremental/veloren_* || echo "all good" # TMP FIX FOR 2021-03-22-nightly
|
|
- pwd
|
|
- ls ./
|
|
- ls /dockercache/veloren
|
|
- cat assets/voxygen/element/v_logo.png | head -n 3
|
|
#- cargo clippy --all-targets --locked -- -D warnings
|
|
#- cargo fmt --all -- --check
|
|
|
|
security:
|
|
extends: .recompile-branch
|
|
stage: check
|
|
allow_failure: true
|
|
script:
|
|
- ln -s /dockercache/cache-all target
|
|
- cargo audit
|