Use the linux/docker runner
Some checks failed
pip-audit / build (3.11) (pull_request) Failing after 7m7s
Bandit / build (3.11) (push) Has been cancelled
Flake8 / build (3.11) (push) Has been cancelled
Mypy / build (3.11) (push) Has been cancelled
Pylint / build (3.11) (push) Has been cancelled

This commit is contained in:
2026-03-14 15:58:24 +01:00
parent 8f63d5ae68
commit 76a1cb86ed

View File

@ -11,13 +11,28 @@ on:
# XXX need to do stuff with uv # XXX need to do stuff with uv
jobs: jobs:
build: build:
runs-on: freebsd runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.11"] python-version:
- "3.11"
steps: steps:
- uses: actions/checkout@v4 - name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip-audit
pip install -r requirements.txt
- name: Check vulnerable components with pip-audit - name: Check vulnerable components with pip-audit
run: | run: |
pip-audit -r requirements.txt pip-audit -r requirements.txt