Skip to content

Commit a845398

Browse files
committed
CI test for minimum supported python version
1 parent e3e08eb commit a845398

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,19 @@ jobs:
5555
fail-fast: false
5656
matrix:
5757
os: ["ubuntu-latest", "windows-latest"]
58+
# Test minimum supported and latest stable from 3.x series
59+
python-version: ["3.8", "3"]
5860
steps:
5961
- uses: actions/checkout@v4
6062
- uses: actions/setup-python@v5
6163
with:
62-
python-version: 3
64+
python-version: ${{ matrix.python-version }}
6365
allow-prereleases: true
6466
cache: pip
6567
- name: Install dependencies
6668
run: |
6769
pip install --upgrade pip
68-
pip install Babel jinja2 setuptools
70+
pip install -r requirements.txt
6971
- run: python babel_runner.py extract
7072
- run: python babel_runner.py init -l pt_BR
7173
- run: python babel_runner.py update

0 commit comments

Comments
 (0)