]> git.r.bdr.sh - rbdr/lyricli/blob - .gitlab-ci.yml
Removing gitlab CI config
[rbdr/lyricli] / .gitlab-ci.yml
1 image: lyriclitest/swift:5.0.1
2
3 stages:
4 - lint
5
6 cache:
7 key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
8 paths:
9 - .build/
10
11 lint:
12 stage: lint
13 script:
14 - make lint
15
16 document:
17 stage: document
18 script:
19 - make document
20 artifacts:
21 paths:
22 - docs
23
24 pages:
25 stage: deploy
26 script:
27 - mv docs public
28 artifacts:
29 paths:
30 - public