feat: add budget baseline command #184
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| local-checks: | |
| name: local-checks / Python 3.12 | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install project and dev dependencies | |
| run: python -m pip install -e '.[dev]' | |
| - name: Run local checks | |
| run: ./scripts/check.sh | |
| - name: Run installed package smoke checks | |
| run: | | |
| agent-rules-kit --version | |
| agent-rules-kit check tests/fixtures/repositories/single-agent --format json | python -m json.tool |