stages: - static_analysis - deploy image: elixir:latest before_script: - mix local.rebar --force - mix local.hex --force - mix deps.get test: stage: static_analysis script: - MIX_ENV=test mix compile - mix test --cover artifacts: when: always paths: - cover reports: junit: _build/test/lib/matrix_app_service/test-junit-report.xml cobertura: coverage.xml format: stage: static_analysis script: - mix format --check-formatted pages: stage: deploy script: - mix docs -o public artifacts: paths: - public only: - master