mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-26 18:20:03 +00:00
21 lines
384 B
YAML
21 lines
384 B
YAML
when:
|
|
event: [push, pull_request]
|
|
branch: main
|
|
|
|
steps:
|
|
ci:
|
|
image: elixir:1.18.3-otp-27
|
|
commands:
|
|
- mix deps.get
|
|
- mix compile --warnings-as-errors
|
|
- mix format --check-formatted
|
|
- mix credo
|
|
- mix test
|
|
environment:
|
|
MIX_ENV: ci
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|