Skip to content
Snippets Groups Projects
Commit 15d8fdf9 authored by spookydonut's avatar spookydonut
Browse files

Add CI

parent 831c708c
Branches
No related merge requests found
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