blob: 03f9482476c0668fc599185d61aa4d01a772587d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
image: registry.gitlab.com/reidrac/ubox-msx-lib-ci:latest
stages:
- lint
- build
- test
lint:
script:
- black --check --diff .
build:
script:
- make game
test:
script:
- make test
|