Compare commits

..

1 commit

Author SHA1 Message Date
0be43f43ad
Set up basic CI
Some checks failed
continuous-integration/drone/pr Build is pending
continuous-integration/drone/push Build is failing
2025-04-21 13:09:17 +02:00

View file

@ -2,9 +2,17 @@ kind: pipeline
type: docker
name: default
services:
- name: postgres
image: docker.io/library/postgres:17.2
steps:
- name: lint & test
image: docker.io/elixir:1.18.3-otp-27
image: docker.io/library/elixir:1.18.3-otp-27
commands:
# Install hex package manager
- mix local.hex --force
# Check for compilation errors & warnings
- mix compile --warnings-as-errors
# Check formatting
- mix format --check-formatted