Fix bridge lint/format regressions for CI #83
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: Install Command Guardrails | |
| on: | |
| push: | |
| paths: | |
| - "README.md" | |
| - "INSTALL.md" | |
| - "install.sh" | |
| - "scripts/install.sh" | |
| - "scripts/check-install-commands.sh" | |
| - "docs/**" | |
| - "src/**" | |
| - "crates/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/install-command-guardrails.yml" | |
| pull_request: | |
| paths: | |
| - "README.md" | |
| - "INSTALL.md" | |
| - "install.sh" | |
| - "scripts/install.sh" | |
| - "scripts/check-install-commands.sh" | |
| - "docs/**" | |
| - "src/**" | |
| - "crates/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/install-command-guardrails.yml" | |
| jobs: | |
| validate-install-surface: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run install guardrails | |
| run: ./scripts/check-install-commands.sh |