kinemat/.gitlab-ci.yml

57 lines
709 B
YAML
Raw Permalink Normal View History

2018-11-13 12:30:03 +13:00
image: elixir:latest
2017-11-05 19:53:21 +13:00
cache:
key: "$CI_JOB_NAME"
paths:
- deps
- _build
- /root/.mix
2017-11-05 19:53:21 +13:00
variables:
MIX_ENV: "test"
before_script:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get --only test
test:
stage: test
script:
- mix test
credo:
stage: test
script:
- mix credo
audit:
stage: test
script:
- mix hex.audit
format:
stage: test
script:
- mix format --check-formatted
pages:
stage: deploy
script:
- mix docs -o public
artifacts:
paths:
- public
only:
- master
package:
stage: deploy
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
2017-11-05 19:53:21 +13:00
script:
- mix hex.build
artifacts:
paths:
- "kinemat-*.tar"