We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7987c commit 6c7a3c6Copy full SHA for 6c7a3c6
1 file changed
.gitlab-ci.yml
@@ -0,0 +1,13 @@
1
+# Official language image. Look for the different tagged releases at:
2
+# https://hub.docker.com/r/library/rust/tags/
3
+image: "rust:latest"
4
+
5
+before_script:
6
+ - apt-get update -yqq
7
+ - apt-get install -yqq --no-install-recommends build-essential cmake
8
9
+# Use cargo to test the project
10
+test:cargo:
11
+ script:
12
+ - rustc --version && cargo --version # Print version info for debugging
13
+ - cargo test --workspace --verbose
0 commit comments