mailApp/.gitlab-ci.yml

23 lines
313 B
YAML
Raw Normal View History

2023-08-29 18:16:49 +10:00
image: "estusdev/rust-ci"
default:
before_script:
- rustc --version && cargo --version
stages:
- test
test-code:
stage: test
script:
- cargo test --verbose
lint-code:
stage: test
script:
- cargo clippy -- -D warnings
format-code:
stage: test
script:
- cargo fmt -- --check