1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-07-07 10:08:36 +02:00
conduit/.gitlab-ci.yml
2021-05-22 21:41:08 +02:00

29 lines
631 B
YAML

image: "rust:latest"
default:
tags: [docker]
cache:
paths:
- target
- cargohome
variables:
GIT_SUBMODULE_STRATEGY: recursive
CARGO_HOME: "cargohome"
FF_USE_FASTZIP: 1
before_script:
- mkdir -p $CARGO_HOME && echo "using $CARGO_HOME to cache cargo deps"
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends build-essential libssl-dev pkg-config
- rustup component add clippy rustfmt
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --workspace --verbose --locked
- cargo fmt --all -- --check
- cargo clippy