1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 03:59:22 +02:00
conduit/.gitlab-ci.yml
Jonathan de Jong 80f1844476 fix rustup pls
2021-05-05 17:44:32 +00:00

16 lines
436 B
YAML

image: "rust:latest"
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- 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