Prove theorem self_eq_bb
#582
Workflow file for this run
This file contains 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-x86_64 | |
os: ubuntu-latest | |
- name: macOS-aarch64 | |
os: macos-latest | |
- name: macOS-x86_64 | |
os: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and Test lean-smt | |
uses: leanprover/lean-action@v1 | |
with: | |
build-args: "Smt Smt.Auto Smt.Rat Smt.Real" | |
use-github-cache: false |