]> git.ipfire.org Git - thirdparty/suricata-update.git/commitdiff
github-ci: add Fedora 32 test (Python3 only)
authorJason Ish <jason.ish@oisf.net>
Wed, 8 Jul 2020 23:00:34 +0000 (17:00 -0600)
committerJason Ish <jason.ish@oisf.net>
Mon, 20 Jul 2020 16:47:32 +0000 (10:47 -0600)
.github/workflows/tests.yml

index 2ccb5504b16da46f013cc55214b7ee49dec7add5..b8f372bcfbb0bb5e2bd8b6ce4999473ada969285 100644 (file)
@@ -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