mirror of
https://codeberg.org/JasterV/intisync.ex.git
synced 2026-04-26 18:10:07 +00:00
17 lines
348 B
YAML
17 lines
348 B
YAML
when:
|
|
- event: [push, pull_request]
|
|
branch: main
|
|
|
|
steps:
|
|
ci:
|
|
image: elixir:1.19.2-otp-28
|
|
environment:
|
|
MIX_ENV: test
|
|
commands:
|
|
- mix local.rebar --force
|
|
- mix local.hex --force
|
|
- mix deps.get
|
|
- mix compile --warnings-as-errors
|
|
- mix format --check-formatted
|
|
- mix credo
|
|
- mix test
|