8000 Fully completed optimized proofs of correctness · FormalSAT/trestle@8093c14 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fully completed optimized proofs of correctness #311

Fully completed optimized proofs of correctness

Fully completed optimized proofs of correctness #311

Workflow file for this run

on:
push:
pull_request:
name: ci
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: install elan
run: |
set -o pipefail
curl -sSfL https://github.com/leanprover/elan/releases/download/v1.4.2/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
./elan-init -y --default-toolchain none
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- uses: actions/checkout@v2
- name: build package and examples
run: lake exe cache get && lake build LeanSAT Examples
0