# .github/workflows/agentaz.yml
# Computes your agent's AgentAz Trust Level on every push/PR and (optionally)
# fails the build when it's riskier than your policy. Docs: https://github.com/agent-kits/agentaz-validate
name: AgentAz
on: [push, pull_request]
jobs:
  governance:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: agent-kits/agentaz-validate@v1
        with:
          file: agentaz.json     # path to your spec
          min-tier: A4           # optional: fail if riskier than bounded autonomy
          strict: false          # optional: fail on thin specs
