Compare commits

..

7 commits

Author SHA1 Message Date
548bfb55ca
add further locale tests
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-18 17:44:37 +02:00
4f3786bf5c
feat: gettext 2025-06-18 17:44:36 +02:00
03da80cca5
chore: fix linting
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-18 17:43:59 +02:00
83865dc186
fix member deletion: property delete on cascade 2025-06-18 17:43:58 +02:00
57772a23b8
replace default fields from properties with example fields 2025-06-18 17:43:58 +02:00
979d74e3be
liveview for new member fields 2025-06-18 17:43:58 +02:00
88fedd4c9f
Member fields 2025-06-18 17:43:57 +02:00

View file

@ -14,26 +14,6 @@ trigger:
- push
steps:
- name: compute cache key
image: docker.io/library/elixir:1.18.3-otp-27
commands:
- mix_lock_hash=$(sha256sum mix.lock | cut -d ' ' -f 1)
- echo "$DRONE_REPO_OWNER/$DRONE_REPO_NAME/$mix_lock_hash" >> .cache_key
# Print cache key for debugging
- cat .cache_key
- name: restore-cache
image: drillster/drone-volume-cache
settings:
restore: true
mount:
- ./deps
- ./_build
ttl: 30
volumes:
- name: cache
path: /cache
- name: lint
image: docker.io/library/elixir:1.18.3-otp-27
commands:
@ -79,25 +59,11 @@ steps:
commands:
# Install hex package manager
- mix local.hex --force
# Fetch dependencies
- mix deps.get
# Run tests
- mix test
- name: rebuild-cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- ./deps
- ./_build
volumes:
- name: cache
path: /cache
volumes:
- name: cache
host:
path: /tmp/drone_cache
---
kind: pipeline
type: docker