We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7a3c6 commit 150853bCopy full SHA for 150853b
1 file changed
.gitlab-ci.yml
@@ -7,7 +7,15 @@ before_script:
7
- apt-get install -yqq --no-install-recommends build-essential cmake
8
9
# Use cargo to test the project
10
-test:cargo:
+test:cargo:latest:
11
+ image: rust:latest
12
script:
13
- rustc --version && cargo --version # Print version info for debugging
14
- cargo test --workspace --verbose
15
+
16
+test:cargo:nightly:
17
+ image: rustlang/rust:nightly
18
+ script:
19
+ - rustc --version && cargo --version
20
+ - cargo test --workspace --verbose
21
+ allow_failure: true
0 commit comments