mitgliederverwaltung/Justfile
Moritz 77632bedec
All checks were successful
continuous-integration/drone/push Build is passing
Add basic CI setup (#30)
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>
2025-04-28 14:24:30 +02:00

26 lines
No EOL
379 B
Makefile

run: install-dependencies migrate-database
mix phx.server
install-dependencies:
mix deps.get
migrate-database:
mix ash.setup
reset-database:
mix ash.reset
ci-dev: lint audit test
lint:
mix format --check-formatted
mix compile --warnings-as-errors
mix credo
audit:
mix sobelow --config
mix deps.audit
mix hex.audit
test:
mix test