Skip to content

Commit

Permalink
Use python instead of python3 to run babel_runner.py
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Turner <[email protected]>
  • Loading branch information
rffontenelle and AA-Turner authored Aug 3, 2024
1 parent 6b6f0d2 commit 7878f4e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ jobs:
cache: pip
- name: Install dependencies
run: |
pip install -U pip setuptools
pip install Babel jinja2
- run: python3 babel_runner.py extract
- run: python3 babel_runner.py init -l pt_BR
- run: python3 babel_runner.py update
- run: python3 babel_runner.py update -l pt_BR
- run: python3 babel_runner.py compile
- run: python3 babel_runner.py compile -l pt_BR
pip install --upgrade pip
pip install Babel jinja2 setuptools
- run: python babel_runner.py extract
- run: python babel_runner.py init -l pt_BR
- run: python babel_runner.py update
- run: python babel_runner.py update -l pt_BR
- run: python babel_runner.py compile
- run: python babel_runner.py compile -l pt_BR
- name: Print .pot file
shell: bash
run: cat locales/messages.pot
Expand Down

0 comments on commit 7878f4e

Please sign in to comment.