Skip to content

Update Lean toolchain to v4.28.0. #324

Update Lean toolchain to v4.28.0.

Update Lean toolchain to v4.28.0. #324

Workflow file for this run

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