From 36759d5e31a13c859efec84a1bcce227b1b84a33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 14 Oct 2024 20:54:36 +0200 Subject: [PATCH] Test on latest OS and Python versions in CI --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 241a2c6..8cd23a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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