From: Jason Ish Date: Wed, 21 Sep 2022 17:03:49 +0000 (-0600) Subject: github-ci: add Ubuntu 22.04 test X-Git-Tag: 1.3.0rc1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03b0d5d5c9c847bf95f65ec1276b9a3031c5edf1;p=thirdparty%2Fsuricata-update.git github-ci: add Ubuntu 22.04 test --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index caea084..74a5892 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -103,6 +103,22 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py + ubuntu-2204: + name: Ubuntu 22.04 + runs-on: ubuntu-latest + container: ubuntu:22.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-2004: name: Ubuntu 20.04 runs-on: ubuntu-latest