From 780f5f61eadf371a71fa75e1671fab3702eb7f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Eppl=C3=A9e?= Date: Tue, 2 Dec 2025 10:25:15 +0100 Subject: [PATCH] Check translations when linting --- .drone.yml | 2 ++ Justfile | 1 + 2 files changed, 3 insertions(+) diff --git a/.drone.yml b/.drone.yml index 623114f..427ecfc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -53,6 +53,8 @@ steps: - mix hex.audit # Provide hints for improving code quality - mix credo + # Check that translations are up to date + - mix gettext.extract --check-up-to-date - name: wait_for_postgres image: docker.io/library/postgres:17.6 diff --git a/Justfile b/Justfile index b28dbdc..907283f 100644 --- a/Justfile +++ b/Justfile @@ -29,6 +29,7 @@ lint: mix format --check-formatted mix compile --warnings-as-errors mix credo + mix gettext.extract --check-up-to-date audit: mix sobelow --config