Update Lean toolchain to v4.28.0. #324
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: CI | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - name: Linux-aarch64 | |
| os: ubuntu-22.04-arm | |
| - name: Linux-x86_64 | |
| os: ubuntu-22.04 | |
| - name: macOS-aarch64 | |
| os: macos-14 | |
| - name: macOS-x86_64 | |
| os: macos-15-intel | |
| - name: Windows-x86_64 | |
| os: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Lean | |
| uses: leanprover/lean-action@v1 | |
| with: | |
| auto-config: false | |
| use-mathlib-cache: false | |
| - name: Build and Test Lean-SMT | |
| run: | | |
| lake update | |
| lake build Smt Smt.Rat Smt.Real | |
| lake run test | |
| shell: bash |