fix: compatibility with new FFI representations #16
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Here, "original" means to use the lean-toolchain file's contents in the repository | |
| lean-version: ["original", "v4.21.0", "v4.22.0-rc3", "nightly-2025-08-04"] | |
| name: CI (${{ matrix.lean-version }}) | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set Lean version | |
| if: matrix.lean-version != 'original' | |
| run: echo "${{ matrix.lean-version }}" > lean-toolchain | |
| # uses lean standard action with all default input values | |
| - uses: leanprover/lean-action@v1 |