static-serve/.gitlab-ci.yml
Paolo Barbolini 7dc755dde4 First commit
2025-02-20 17:31:04 +01:00

35 lines
583 B
YAML

stages:
- test
rust:deny:
stage: test
image: rust:1.84-alpine3.21
before_script:
- apk add cargo-deny
script:
- cargo deny check
rust:fmt:
stage: test
image: rust:1.84-alpine3.21
before_script:
- rustup component add rustfmt
script:
- cargo fmt -- --check
rust:clippy:
stage: test
image: rust:1.84-alpine3.21
before_script:
- rustup component add clippy
script:
- cargo clippy --all-features -- -D warnings
rust:test:
stage: test
image: rust:1.84-alpine3.21
before_script:
- apk add musl-dev
script:
- cargo test