Skip to content

Improve the README.md file from /audit #789

Improve the README.md file from /audit

Improve the README.md file from /audit #789

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
test:
name: Tests on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Audit dependencies for known vulnerabilities
run: >-
uv export --format requirements-txt --no-dev --no-emit-project |
uvx pip-audit
--ignore-vuln CVE-2026-4539
--no-deps
--disable-pip
-r /dev/stdin
- name: Run tests
run: uv run python -m pytest tests/ -v