Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI
on:
pull_request:
paths-ignore:
- '**.md'
- 'extra/**'
- 'capture/**'
- 'ansible/**'
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/deps_security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Dependency Security & Compatibility Test

on:
pull_request:
paths:
- 'requirements.txt'
- '**.py'

jobs:
test-deps:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Run pip-audit to report vulnerabilities
run: |
pip install pip-audit
pip-audit || true

- name: Deploy cxp
run: |
bash ./start.sh &
sleep 5

- name: Run Application Health Check
run: |
bash ./scripts/healthcheck-ci.sh
1 change: 1 addition & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:

pull_request:
paths-ignore:
- '**.md'
- 'extra/**'
- 'capture/**'
- 'ansible/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- 'scripts/**'
- '.gitignore'
- 'LICENSE'
- '.github/workflows/**'
branches:
- master

Expand Down