File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments