Enable RhoeMarkdown Pages deployment on public repos #7
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: Maintainer Gate | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| gate: | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate public release hygiene | |
| run: bash Scripts/CI/validate-public-release.sh | |
| - name: Build | |
| run: swift build | |
| - name: Test | |
| run: swift test | |
| - name: Validate docs | |
| run: bash Scripts/CI/validate-docs.sh | |
| - name: Validate language reference | |
| run: bash Scripts/CI/validate-language-reference.sh | |
| - name: Validate examples | |
| run: bash Scripts/CI/validate-examples.sh | |
| - name: Validate external conformance | |
| run: bash Scripts/CI/validate-external-conformance.sh |