fix: exclude excellence proposals from compiled briefs #42
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: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deterministic: | |
| name: deterministic-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| python-version: "3.13" | |
| enable-cache: false | |
| - name: Run full tests | |
| run: >- | |
| uvx --python 3.13 --from pytest==9.1.1 | |
| --with pyyaml==6.0.3 --with sqlite-vec==0.1.9 | |
| --with fastembed==0.8.0 pytest -q | |
| - name: Validate skill packages | |
| run: bin/work-bundle-skill validate |