Exit with a dedicated code on startup failure and stop the supervisor when a worker can't boot #712
Workflow file for this run
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: Test Suite | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| tests: | |
| name: "Python ${{ matrix.python-version }} ${{ matrix.os }}" | |
| runs-on: "${{ matrix.os }}" | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"] | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: ${{ matrix.os != 'windows-latest' }} | |
| - name: Install dependencies | |
| run: scripts/install | |
| shell: bash | |
| - name: Run linting checks | |
| run: scripts/check | |
| if: "${{ matrix.os == 'ubuntu-latest'}}" | |
| - name: "Build package & docs" | |
| run: scripts/build | |
| shell: bash | |
| - name: "Run tests" | |
| run: scripts/test | |
| shell: bash | |
| - name: "Enforce coverage" | |
| run: scripts/coverage | |
| shell: bash | |
| docs-preview: | |
| if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| env: | |
| HAS_CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN != '' }} | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| environment: | |
| name: cloudflare | |
| url: ${{ steps.deploy.outputs.deployment-url }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| with: | |
| python-version: "3.12" | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: scripts/install | |
| - name: Build docs | |
| run: uv run zensical build | |
| - name: Deploy preview to Cloudflare Workers | |
| id: deploy | |
| if: ${{ env.HAS_CLOUDFLARE_TOKEN == 'true' }} | |
| uses: cloudflare/wrangler-action@ebbaa1584979971c8614a24965b4405ff95890e0 # v4.0.0 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| command: versions upload --tag pr-${{ github.event.pull_request.number }} | |
| - name: Comment preview URL on PR | |
| if: ${{ steps.deploy.outcome == 'success' }} | |
| uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 | |
| with: | |
| message: | | |
| :book: Docs preview: ${{ steps.deploy.outputs.deployment-url }} | |
| comment-tag: docs-preview | |
| # https://github.com/marketplace/actions/alls-green#why | |
| check: | |
| if: always() | |
| needs: [tests] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |