Skip to content

Commit

Permalink
fix: install requirements before validating translations
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-smith-tcril authored and OmarIthawi committed Aug 26, 2024
1 parent b244434 commit cd5fb8e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/validate-translation-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ jobs:
run: |
sudo apt install -y gettext
- name: setup python
if: steps.filter.outputs.pofiles == 'true'
uses: actions/setup-python@v4
id: setup_python
with:
python-version: '3.8'
cache: pip
cache-dependency-path: |
requirements/translations.txt
- name: Install requirements
if: steps.filter.outputs.pofiles == 'true'
run: |
python --version
make translations_scripts_requirements
- name: Validate translation files
id: validate_translation_files
if: steps.filter.outputs.pofiles == 'true'
Expand Down

0 comments on commit cd5fb8e

Please sign in to comment.