Skip to content

chore(deps-dev): bump pytest from 8.4.2 to 9.1.1 in /examples/safe-agent-api #7

chore(deps-dev): bump pytest from 8.4.2 to 9.1.1 in /examples/safe-agent-api

chore(deps-dev): bump pytest from 8.4.2 to 9.1.1 in /examples/safe-agent-api #7

name: Example Safe Agent API
on:
pull_request:
paths:
- "examples/safe-agent-api/**"
- ".github/workflows/example-safe-agent.yml"
push:
branches: [main]
paths:
- "examples/safe-agent-api/**"
- ".github/workflows/example-safe-agent.yml"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: examples/safe-agent-api
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: examples/safe-agent-api/pyproject.toml
- name: Install
run: python -m pip install -e ".[dev]"
- name: Test
run: pytest -q