Compare commits
2 commits
9652d33a01
...
f9ad8fa753
| Author | SHA1 | Date | |
|---|---|---|---|
| f9ad8fa753 | |||
| fd95f08458 |
1 changed files with 13 additions and 0 deletions
13
.drone.yml
13
.drone.yml
|
|
@ -19,6 +19,7 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- mix_lock_hash=$(sha256sum mix.lock | cut -d ' ' -f 1)
|
- mix_lock_hash=$(sha256sum mix.lock | cut -d ' ' -f 1)
|
||||||
- echo "$DRONE_REPO_OWNER/$DRONE_REPO_NAME/$mix_lock_hash" >> .cache_key
|
- echo "$DRONE_REPO_OWNER/$DRONE_REPO_NAME/$mix_lock_hash" >> .cache_key
|
||||||
|
# Print cache key for debugging
|
||||||
- cat .cache_key
|
- cat .cache_key
|
||||||
|
|
||||||
- name: restore-cache
|
- name: restore-cache
|
||||||
|
|
@ -36,18 +37,27 @@ steps:
|
||||||
- name: lint
|
- name: lint
|
||||||
image: docker.io/library/elixir:1.18.3-otp-27
|
image: docker.io/library/elixir:1.18.3-otp-27
|
||||||
commands:
|
commands:
|
||||||
|
# Install hex package manager
|
||||||
- mix local.hex --force
|
- mix local.hex --force
|
||||||
|
# Fetch dependencies
|
||||||
- mix deps.get
|
- mix deps.get
|
||||||
|
# Check for compilation errors & warnings
|
||||||
- mix compile --warnings-as-errors
|
- mix compile --warnings-as-errors
|
||||||
|
# Check formatting
|
||||||
- mix format --check-formatted
|
- mix format --check-formatted
|
||||||
|
# Security checks
|
||||||
- mix sobelow --config
|
- mix sobelow --config
|
||||||
|
# Check dependencies for known vulnerabilities
|
||||||
- mix deps.audit
|
- mix deps.audit
|
||||||
|
# Check for dependencies that are not maintained anymore
|
||||||
- mix hex.audit
|
- mix hex.audit
|
||||||
|
# Provide hints for improving code quality
|
||||||
- mix credo
|
- mix credo
|
||||||
|
|
||||||
- name: wait_for_postgres
|
- name: wait_for_postgres
|
||||||
image: docker.io/library/postgres:17.6
|
image: docker.io/library/postgres:17.6
|
||||||
commands:
|
commands:
|
||||||
|
# Wait for postgres to become available
|
||||||
- |
|
- |
|
||||||
for i in {1..20}; do
|
for i in {1..20}; do
|
||||||
if pg_isready -h postgres -U postgres; then
|
if pg_isready -h postgres -U postgres; then
|
||||||
|
|
@ -67,8 +77,11 @@ steps:
|
||||||
TEST_POSTGRES_HOST: postgres
|
TEST_POSTGRES_HOST: postgres
|
||||||
TEST_POSTGRES_PORT: 5432
|
TEST_POSTGRES_PORT: 5432
|
||||||
commands:
|
commands:
|
||||||
|
# Install hex package manager
|
||||||
- mix local.hex --force
|
- mix local.hex --force
|
||||||
|
# Fetch dependencies
|
||||||
- mix deps.get
|
- mix deps.get
|
||||||
|
# Run tests
|
||||||
- mix test
|
- mix test
|
||||||
|
|
||||||
- name: rebuild-cache
|
- name: rebuild-cache
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue