Skip to content

Commit 9efa308

Browse files
committed
feat: add check
1 parent 4a6ee3c commit 9efa308

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,29 @@ jobs:
2828
python-version: ${{ needs.config.outputs.python-version }}
2929
plone-version: ${{ needs.config.outputs.plone-version }}
3030

31+
i18n:
32+
name: "Missing i18n:translate"
33+
runs-on: ubuntu-latests
34+
needs:
35+
- config
36+
37+
steps:
38+
- name: Install uv
39+
uses: astral-sh/setup-uv@v6
40+
41+
- name: Check for untranslated strings
42+
shell: bash
43+
run: |
44+
uvx i18ndude find-untranslated -n src/
3145
test:
3246
name: "Backend: Test"
3347
needs:
3448
- config
3549
uses: plone/meta/.github/workflows/backend-pytest.yml@2.x
3650
strategy:
3751
matrix:
38-
python-version: ['3.10', '3.11', '3.12', '3.13']
39-
plone-version: ['6.1-latest', '6.0-latest']
52+
python-version: ["3.10", "3.11", "3.12", "3.13"]
53+
plone-version: ["6.1-latest", "6.0-latest"]
4054
with:
4155
python-version: ${{ matrix.python-version }}
4256
plone-version: ${{ matrix.plone-version }}

0 commit comments

Comments
 (0)