Set up basic CI
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Rafael Epplée 2025-04-21 12:49:50 +02:00
parent 86437cbb9d
commit 2574b9416d
No known key found for this signature in database
GPG key ID: B4EFE6DC59FAE118
4 changed files with 33 additions and 7 deletions

View file

@ -2,9 +2,26 @@ 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: greeting
image: alpine
commands:
- echo hello
- echo world
- 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