mitgliederverwaltung/.drone.yml
Rafael Epplée 2574b9416d
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Set up basic CI
2025-04-21 13:33:50 +02:00

27 lines
627 B
YAML

kind: pipeline
type: docker
name: default
services:
- name: postgres
image: docker.io/library/postgres:17.2
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
steps:
- name: lint & test
image: docker.io/library/elixir:1.18.3-otp-27
environment:
MIX_ENV: test
commands:
# Install hex package manager
- mix local.hex --force
# Fetch dependencies
- mix deps.get
# Check for compilation errors & warnings
- mix compile --warnings-as-errors
# Check formatting
- mix format --check-formatted
# Run tests
- mix test