Add very basic CI script

This commit is contained in:
Michał Chodzikiewicz 2021-02-16 23:36:45 +01:00
parent 7e46ee253c
commit 350e5a029a

16
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,16 @@
# todo: spin our own image
image: jamwaffles/circleci-embedded-graphics:1.40.0-3
stages:
- build
- test
build:
stage: build
script:
- cargo build
test:
stage: test
script:
- cargo test