This repository was archived by the owner on Aug 27, 2026. It is now read-only.
Add generic protected observation theorem for frozen stateful transit… #8
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: Wave2 Family5 Lean 4.32 Check | |
| on: | |
| push: | |
| branches: | |
| - proof/wave2-family5-lean432-check | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lean-core: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Install exact Lean toolchain | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| curl --proto '=https' --tlsv1.2 -sSf \ | |
| https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh \ | |
| -o /tmp/elan-init.sh | |
| sh /tmp/elan-init.sh -y \ | |
| --default-toolchain leanprover/lean4:v4.32.0 | |
| printf '%s\n' "$HOME/.elan/bin" >> "$GITHUB_PATH" | |
| - name: Report exact Lean version | |
| shell: bash | |
| run: lean --version | |
| - name: Compile Wave 2 Family 5 proofs | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| export LEAN_PATH="$PWD" | |
| lean verification/wave2_family5/Wave2Family5.lean | |
| lean verification/wave2_family5/BoolEnumExplicit.lean | |
| printf 'LEAN_COMPILE_EXIT=0\n' |