Cycle 27 — still one copy: SDEDM diagnostic upgrade #96
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: Clone check | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| clone-check: | |
| name: Run clone diagnostics | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v4 | |
| - name: Show runtime | |
| run: | | |
| uname -a | |
| python3 --version | |
| bash --version | head -n 1 | |
| git --version | |
| - name: Health check | |
| run: bash tools/health-check.sh | |
| - name: Tool smoke tests | |
| run: python3 tools/tool-smoke.py | |
| - name: Privacy audit | |
| run: python3 tools/privacy-audit.py | |
| - name: Full clone doctor | |
| env: | |
| SEED_CLONE_DOCTOR_SKIP_ADVISORY: "1" | |
| run: bash tools/clone-doctor.sh |