From b5267a50033e39c932ba080afd72d2a3a467f104 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 2 Dec 2024 16:47:37 -0600 Subject: [PATCH] github-ci: add Ubuntu 24.04 test build --- .github/workflows/tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 73c0630..2d2de9f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,6 +84,22 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py + ubuntu-2404: + name: Ubuntu 24.04 + runs-on: ubuntu-latest + container: ubuntu:24.04 + steps: + - run: apt update + - run: | + apt -y install \ + python3-pytest \ + python3-yaml + - uses: actions/checkout@v1 + - name: Python 3 unit tests + run: PYTHONPATH=. pytest-3 + - name: Python 3 integration tests + run: PYTHONPATH=. python3 ./tests/integration_tests.py + ubuntu-2204: name: Ubuntu 22.04 runs-on: ubuntu-latest