8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e08eb commit a845398Copy full SHA for a845398
.github/workflows/tests.yml
@@ -55,17 +55,19 @@ jobs:
55
fail-fast: false
56
matrix:
57
os: ["ubuntu-latest", "windows-latest"]
58
+ # Test minimum supported and latest stable from 3.x series
59
+ python-version: ["3.8", "3"]
60
steps:
61
- uses: actions/checkout@v4
62
- uses: actions/setup-python@v5
63
with:
- python-version: 3
64
+ python-version: ${{ matrix.python-version }}
65
allow-prereleases: true
66
cache: pip
67
- name: Install dependencies
68
run: |
69
pip install --upgrade pip
- pip install Babel jinja2 setuptools
70
+ pip install -r requirements.txt
71
- run: python babel_runner.py extract
72
- run: python babel_runner.py init -l pt_BR
73
- run: python babel_runner.py update
0 commit comments