1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-10-04 01:38:52 +02:00
conduit/.gitlab-ci.yml

17 lines
436 B
YAML
Raw Normal View History

2021-03-13 20:00:13 +01:00
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
2021-05-05 19:44:32 +02:00
- rustup component add clippy rustfmt
2021-03-13 20:00:13 +01:00
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --workspace --verbose --locked
2021-05-05 18:48:44 +02:00
- cargo fmt --all -- --check
2021-05-05 19:44:32 +02:00
- cargo clippy