Add basic CI setup (#30)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: Rafael Epplée <hello@rafa.ee>
Reviewed-on: #30
Co-authored-by: Moritz <moritz.m@local-it.org>
Co-committed-by: Moritz <moritz.m@local-it.org>
This commit is contained in:
Moritz 2025-04-28 14:24:30 +02:00 committed by moritz
parent 2116ee1e91
commit 77632bedec
8 changed files with 102 additions and 9 deletions

View file

@ -2,10 +2,63 @@ kind: pipeline
type: docker
name: default
services:
- name: postgres
image: docker.io/library/postgres:17.2
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
trigger:
event:
- push
steps:
- name: greeting
image: alpine
- name: check
image: docker.io/library/elixir:1.18.3-otp-27
commands:
- echo Hello
- echo beautiful
- echo World
# 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
# Security checks
- mix sobelow --config
# Check dependencies for known vulnerabilities
- mix deps.audit
# Check for dependencies that are not maintained anymore
- mix hex.audit
# Provide hints for improving code quality
- mix credo
- name: wait_for_postgres
image: docker.io/library/postgres:17.2
commands:
# Wait for postgres to become available
- |
for i in {1..20}; do
if pg_isready -h postgres -U postgres; then
exit 0
else
true
fi
sleep 2
done
echo "Postgres did not become available, aborting."
exit 1
- name: test
image: docker.io/library/elixir:1.18.3-otp-27
environment:
MIX_ENV: test
TEST_POSTGRES_HOST: postgres
commands:
# Install hex package manager
- mix local.hex --force
# Fetch dependencies
- mix deps.get
# Run tests
- mix test