mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-04 17:08:52 +01:00
13 lines
344 B
YAML
13 lines
344 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
|