forked from carllerche/codegen
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gitlab-ci' into 'master'
Remove travis-ci, add gitlab ci Closes #1 See merge request IovoslavIovchev/codegen!5
- Loading branch information
Showing
2 changed files
with
12 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Template taken from: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Rust.gitlab-ci.yml | ||
|
||
# Official language image. Look for the different tagged releases at: | ||
# https://hub.docker.com/r/library/rust/tags/ | ||
image: "rust:latest" | ||
|
||
# Use cargo to test the project | ||
test:cargo: | ||
script: | ||
- rustc --version && cargo --version # Print version info for debugging | ||
- cargo test --workspace --verbose | ||
|
This file was deleted.
Oops, something went wrong.