Skip to content

Commit

Permalink
Test on latest OS and Python versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 14, 2024
1 parent b0207a8 commit 36759d5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
sudo apt-get install gettext aspell aspell-fr enchant-2
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install bandit coverage flake8 pylint pytest pytest-cov
Expand Down

0 comments on commit 36759d5

Please sign in to comment.