Page MenuHomePhorge

.gitlab-ci.yml
No OneTemporary

Size
544 B
Referenced Files
None
Subscribers
None

.gitlab-ci.yml

image: elixir:1.9
variables:
MIX_ENV: test
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- deps
- _build
stages:
- build
- test
before_script:
- mix local.hex --force
- mix local.rebar --force
build:
stage: build
script:
- mix deps.get
- mix compile --force
unit-testing:
stage: test
coverage: '/(\d+\.\d+\%) \| Total/'
script:
- mix test --trace --cover
lint:
stage: test
script:
- mix format --check-formatted
analysis:
stage: test
script:
- mix deps.get
- mix credo --strict

File Metadata

Mime Type
text/plain
Expires
Mon, Nov 25, 5:43 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39618
Default Alt Text
.gitlab-ci.yml (544 B)

Event Timeline