Skip to content

Commit

Permalink
Update .gitlab-ci.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
hyouteki committed Aug 11, 2024
1 parent ca0a251 commit 8e042c2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
stages:
- build

rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose

rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose
- cargo test --verbose
allow_failure: true

0 comments on commit 8e042c2

Please sign in to comment.