feat(vstack): add changedoc/lazy/simplify skills, introduce reasoning prompt+advise, and tighten agent guardrails #166
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
| # Check workflow. | |
| # Purpose: run fast single-version unit tests for branch and PR feedback. | |
| # This complements verify.yml, which runs the full cross-version matrix and artifact checks. | |
| name: "Check" | |
| on: | |
| push: | |
| # Mainline, merge-queue, and release-please refs are covered by other workflows. | |
| branches-ignore: | |
| - main | |
| - master | |
| - merge/** | |
| - gh-readonly-queue/** | |
| - release-please--branches--** | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| # Cancel superseded runs for the same ref. | |
| group: check-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| env: | |
| PYTHON_VERSION: "3.11" | |
| POETRY_VERSION: "2.4.1" | |
| POETRY_VIRTUALENVS_IN_PROJECT: "true" | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| test: | |
| # Single-version unit test run for fast feedback. | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 | |
| - name: Install Poetry | |
| run: pipx install "poetry==${POETRY_VERSION}" | |
| - name: Setup Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| cache: poetry | |
| cache-dependency-path: poetry.lock | |
| - name: Install dependencies | |
| run: poetry install --no-interaction --no-ansi | |
| - name: Test | |
| run: make test-local |