mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-05 16:12:44 +02:00
13 lines
432 B
YAML
13 lines
432 B
YAML
build, test and lint:
|
|
image: "rust:1.86-bookworm"
|
|
interruptible: true
|
|
script:
|
|
- apt update -qy
|
|
- apt install -qy build-essential pkg-config clang libclang-dev libssl-dev gettext zsh
|
|
- rustup component add clippy
|
|
- rustup component add rustfmt
|
|
- cargo build
|
|
- cargo clippy --tests --no-deps --workspace
|
|
- cargo fmt --all -- --check
|
|
- cargo test --workspace
|