Compare commits

..

1 commit

Author SHA1 Message Date
ac8dd25eb8
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:54:17 +02:00

View file

@ -25,13 +25,13 @@ steps:
# Check formatting
- mix format --check-formatted
# Wait for postgres to become available
- |
- |
for i in {1..20}; do
pg_isready -h postgres -p $DATABASE_PORT && break
sleep 2
done
echo "Postgres did not become available, aborting"
exit 1
done
done
# Run tests
- mix test