Skip to content

docs: add security policy #21

docs: add security policy

docs: add security policy #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: self-hosted
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install pytest
- run: PYTHONPATH=src python -m pytest tests/ -v --ignore=tests/test_api.py
shell: bash
- run: PYTHONPATH=src python -m pytest tests/test_api.py -v
shell: bash