Add reversal/increment-correctness + runs/walk/recursive-tree batch (… #51
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: pages | |
| # Build the static contribution board from the repo and publish it on GitHub | |
| # Pages. No kernel runs here — verification happens in the `verify` workflow when | |
| # a contributor opens a PR. Enable once in repo Settings → Pages → Source: | |
| # "GitHub Actions" (and the repo must be public, or Pages on a paid plan). | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deploy.outputs.page_url }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Refresh conjecture-track results (pure stdlib) | |
| run: python3 tools/conjecture/conjecture.py | |
| - name: Generate site/ | |
| run: python3 tools/board.py | |
| - uses: actions/configure-pages@v5 | |
| - uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: site | |
| - id: deploy | |
| uses: actions/deploy-pages@v4 |