Bump Lean to v4.32.0 (#169) #358
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: continuous integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| # lean-action does not provide lake executable on Windows for some reason | |
| # - windows-latest | |
| - ubuntu-latest | |
| - macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Regex | |
| uses: leanprover/lean-action@v1 | |
| with: | |
| build-args: '--wfail' | |
| lake-package-directory: regex | |
| - name: Run CorpusTest | |
| run: | | |
| cd regex | |
| time lake exe CorpusTest --verify | |
| time lake exe CorpusTest --verify --backtracker | |
| time lake exe CorpusTest --verify --backtracker | |
| time lake exe CorpusTest --verify | |
| - name: Build RegexCorrectness | |
| uses: leanprover/lean-action@v1 | |
| with: | |
| build-args: '--wfail' | |
| lake-package-directory: correctness |