Skip to content

Commit b4b709e

Browse files
committed
Chequea sólo archivos .po previamente calculados
Mírese el commit anterior para más detalles. Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
1 parent 5fab9f9 commit b4b709e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,14 @@ jobs:
7272
run: |
7373
diff -Naur TRANSLATORS <(LANG=es python scripts/sort.py < TRANSLATORS)
7474
- name: Powrap
75-
run: powrap --check --quiet **/*.po
75+
if: steps.po-files-to-check.outputs.any_po_files_to_check == 'true'
76+
run: powrap --check --quiet ${{ steps.po-files-to-check.outputs.po_files_to_check }}
7677
- name: Sphinx lint
77-
run: |
78-
sphinx-lint */*.po
78+
if: steps.po-files-to-check.outputs.any_po_files_to_check == 'true'
79+
run: sphinx-lint ${{ steps.po-files-to-check.outputs.po_files_to_check }}
7980
- name: Pospell
80-
run: |
81-
python scripts/check_spell.py
81+
if: steps.po-files-to-check.outputs.any_po_files_to_check == 'true'
82+
run: python scripts/check_spell.py ${{ steps.po-files-to-check.outputs.po_files_to_check }}
8283

8384
# Construcción de la documentación
8485
- name: Construir documentación

0 commit comments

Comments
 (0)