Harden portable skill protocol, installer safety, and quality gates (#2) #11
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: docs | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: code-max-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| checks: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| python: '3.10' | |
| - os: macos-latest | |
| python: '3.13' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Validate the skill package | |
| run: python3 scripts/validate.py | |
| - name: Run isolated utility regression tests | |
| run: python3 -m unittest discover -s tests -v | |
| - name: Check Bash syntax | |
| run: bash -n skills.sh | |
| - name: ShellCheck | |
| if: runner.os == 'Linux' | |
| run: shellcheck skills.sh | |
| # Preserve the existing branch-protection context, including matrix failures. | |
| docs: | |
| if: always() | |
| needs: checks | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 2 | |
| steps: | |
| - name: Require every check to pass | |
| env: | |
| CHECK_RESULT: ${{ needs.checks.result }} | |
| run: test "$CHECK_RESULT" = success |