Add .gitlab-ci.yml

This commit is contained in:
Jonathan de Jong 2021-03-13 19:00:13 +00:00 committed by Jonathan de Jong
parent e785ff6f56
commit f79053484b

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
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