mirror of
https://github.com/bikini/patchwork
synced 2026-06-27 08:08:41 +00:00
Add audit manifests and CI
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "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
|
||||
Reference in New Issue
Block a user