Skip to content

docs: document security notes in SECURITY.md (v0.7.39) #29

docs: document security notes in SECURITY.md (v0.7.39)

docs: document security notes in SECURITY.md (v0.7.39) #29

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest tests/ -v --ignore=tests/test_integration.py