Skip to content
Snippets Groups Projects
Commit 7b0765f7 authored by tec's avatar tec
Browse files

Add .gitlab-ci.yml (thanks to @spookydonut)

parent c0f67905
No related merge requests found
Pipeline #145 failed with stages
image: 'rust:latest'
stages:
- test
- build
variables:
CARGO_HOME: $CI_PROJECT_DIR/cargo
test:
stage: test
script:
- rustc --version
- cargo --version
- cargo test --verbose
build:
stage: build
script:
- cargo build --all --verbose
cache:
paths:
- cargo/
- target/
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment