File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,14 @@ jobs:
72
72
run : |
73
73
diff -Naur TRANSLATORS <(LANG=es python scripts/sort.py < TRANSLATORS)
74
74
- 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 }}
76
77
- 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 }}
79
80
- 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 }}
82
83
83
84
# Construcción de la documentación
84
85
- name : Construir documentación
You can’t perform that action at this time.
0 commit comments