From 2fdf6c97d57bd72874bb17a2878581fbef973b02 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Wed, 27 Nov 2024 16:26:55 -0600 Subject: [PATCH] github-ci: add fedora 40, 41; remove 38, 39 --- .github/workflows/tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6569aec..b76a66c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,10 +52,10 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py - fedora-39: - name: Fedora 39 + fedora-41: + name: Fedora 41 runs-on: ubuntu-latest - container: fedora:39 + container: fedora:41 steps: - run: | dnf -y install \ @@ -68,17 +68,17 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py - fedora-38: - name: Fedora 38 + fedora-40: + name: Fedora 40 runs-on: ubuntu-latest - container: fedora:38 + container: fedora:40 steps: - run: | dnf -y install \ python3 \ python3-pytest \ python3-pyyaml - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Python 3 unit tests run: PYTHONPATH=. pytest-3 - name: Python 3 integration tests