You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
conduit/.gitlab-ci.yml

15 lines
363 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
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --workspace --verbose --locked
3 years ago
- cargo clippy