Skip to content

v0.4.0: ASI06 output injection + ASI09 recursion detection + adversar… #48

v0.4.0: ASI06 output injection + ASI09 recursion detection + adversar…

v0.4.0: ASI06 output injection + ASI09 recursion detection + adversar… #48

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: ruff check agentguard/ --exit-zero
- name: Test
run: pytest tests/ -v --cov=agentguard --cov-report=term-missing