aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 3147c8b5c19b64e48aca1bef90c8735d835acd6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
    - make game-cas

test:
  stage: test
  script:
    - make test