Skip to content

Commit 36759d5

Browse files
committed
Test on latest OS and Python versions in CI
1 parent b0207a8 commit 36759d5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
os:
14-
- ubuntu-22.04
14+
- ubuntu-24.04
1515
python-version:
16-
- "3.7"
17-
- "3.8"
1816
- "3.9"
1917
- "3.10"
18+
- "3.11"
19+
- "3.12"
2020

2121
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
2222
runs-on: ${{ matrix.os }}
@@ -26,14 +26,13 @@ jobs:
2626
- uses: actions/checkout@v2
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

3333
- name: Install dependencies
3434
run: |
3535
sudo apt-get install gettext aspell aspell-fr enchant-2
36-
python -m pip install --upgrade pip
3736
pip install -r requirements.txt
3837
pip install bandit coverage flake8 pylint pytest pytest-cov
3938

0 commit comments

Comments
 (0)