From bdf19b9055c1faca9173a90a0a98987926782ace Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 8 Jul 2024 16:10:03 -0600 Subject: [PATCH] github-ci: add Ubuntu 24.04 build --- .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 22a19f3..2f6401d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -92,17 +92,17 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py - fedora-38: - name: Fedora 38 + ubuntu-2404: + name: Ubuntu 24.04 runs-on: ubuntu-latest - container: fedora:38 + container: ubuntu:24.04 steps: + - run: apt update - run: | - dnf -y install \ - python3 \ + apt -y install \ python3-pytest \ - python3-pyyaml - - uses: actions/checkout@v2 + python3-yaml + - uses: actions/checkout@v1 - name: Python 3 unit tests run: PYTHONPATH=. pytest-3 - name: Python 3 integration tests