Skip to content

Commit 150853b

Browse files
committed
Also test on nightly
1 parent 6c7a3c6 commit 150853b

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ before_script:
77
- apt-get install -yqq --no-install-recommends build-essential cmake
88

99
# Use cargo to test the project
10-
test:cargo:
10+
test:cargo:latest:
11+
image: rust:latest
1112
script:
1213
- rustc --version && cargo --version # Print version info for debugging
1314
- 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

Comments
 (0)