Skip to content

Ubuntu 24.04 containers for Suricata (4.x and newer) and Snort (2.9.16.x and newer) #43

Ubuntu 24.04 containers for Suricata (4.x and newer) and Snort (2.9.16.x and newer)

Ubuntu 24.04 containers for Suricata (4.x and newer) and Snort (2.9.16.x and newer) #43

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "master", "pilot" ]
pull_request:
branches: [ "master", "pilot" ]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
make venv
- name: Run the lint checker
run: |
make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
make venv
- name: Run the tests
run: |
make test
docker-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run the hadolint tool on the Dockerfile files
run: |
make hadolint