Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b

git-subtree-dir: ai-context/trustgraph-templates
git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
This commit is contained in:
elpresidank 2026-04-05 21:09:49 -05:00
commit 74cc8a4685
1216 changed files with 116347 additions and 0 deletions

31
.github/workflows/pull-request.yaml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Test pull request
on:
pull_request:
permissions:
contents: read
jobs:
container-push:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup environment
run: |
python3 -m venv env
. env/bin/activate
pip install -e .[dev]
- name: Run pytest tests
run: |
. env/bin/activate
pytest -v --tb=short