16 lines
221 B
YAML
16 lines
221 B
YAML
stages:
|
|
- test
|
|
- release
|
|
default:
|
|
image: registry.gitlab.com/etke.cc/base/build
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- just lint
|
|
- just test
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- /root/cache/
|