Files
2026-06-04 04:36:39 -05:00

25 lines
550 B
YAML

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e .
- name: Run tests
run: |
python tests/test_audit.py
python tests/test_obfuscator.py
python tests/test_stress_matrix.py