aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 6c232e777ffae061559112e96cccadc3468bb0b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: registry.gitlab.com/reidrac/ubox-msx-lib-ci:latest

stages:
  - lint
  - build
  - test

check:
  stage: lint
  script:
    - black --check --diff .

compile:
  stage: build
  script:
    - make game

test:
  stage: test
  script:
    - make test