From: Jason Ish Date: Wed, 8 Jul 2020 23:00:34 +0000 (-0600) Subject: github-ci: add Fedora 32 test (Python3 only) X-Git-Tag: 1.2.0rc1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55ac3eb3e88e134756279f4702443a21fecb2382;p=thirdparty%2Fsuricata-update.git github-ci: add Fedora 32 test (Python3 only) --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2ccb550..b8f372b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -95,6 +95,23 @@ jobs: - name: Python 3 integration tests run: PYTHONPATH=. python3 ./tests/integration_tests.py + fedora-32: + name: Fedora 32 + runs-on: ubuntu-latest + container: fedora:32 + steps: + - run: | + yum -y install \ + python3 \ + python3-pytest \ + python3-pyyaml + - uses: actions/checkout@v2 + + - name: Python 3 unit tests + run: PYTHONPATH=. pytest-3 + - name: Python 3 integration tests + run: PYTHONPATH=. python3 ./tests/integration_tests.py + ubuntu-1804: name: Ubuntu 18.04 runs-on: ubuntu-latest