chore: prepare v3.0.0 beta 3 public beta #281
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: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e ".[dev,audio]" | |
| - name: Compile core Python | |
| run: python -m compileall src tests/test_bridge_mock.py scripts/audit_tool_safety.py scripts/audit_anti_vibe.py scripts/check_tool_registration_baseline.py scripts/check_github_project_fingerprint.py scripts/check_release_tag.py scripts/validate_github_labels.py | |
| - name: Lint hard Python errors | |
| run: ruff check --select E9,F src fl_controller/FLStudioPilot/device_FLStudioPilot.py scripts/audit_tool_safety.py tests/test_bridge_mock.py scripts/audit_anti_vibe.py scripts/check_tool_registration_baseline.py scripts/check_github_project_fingerprint.py scripts/check_release_tag.py | |
| - name: Audit anti-vibe coding | |
| run: python scripts/audit_anti_vibe.py | |
| - name: Check tool registration baseline | |
| run: python scripts/check_tool_registration_baseline.py | |
| - name: Check evals contract | |
| run: python scripts/check_evals_contract.py | |
| - name: Audit tool safety | |
| run: python scripts/audit_tool_safety.py --fail-on-gaps | |
| - name: Audit tool safety docs | |
| run: python scripts/audit_tool_safety.py --fail-on-missing-safety-docs --format json | |
| - name: Run mock bridge smoke | |
| run: python tests/test_bridge_mock.py | |
| - name: Validate GitHub label taxonomy | |
| run: python scripts/validate_github_labels.py | |
| - name: Run offline test suite | |
| run: pytest |