Skip to content

Commit

Permalink
chore: add CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
bollu committed Jun 7, 2024
1 parent 6823953 commit 15314b9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: tools, scaling, and auto-generated statements
on:
push:
branches:
- "main"
pull_request:
merge_group:

permissions:
contents: write

jobs:
build:
name: Core Library build.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install elan 🕑
run: |
set -o pipefail
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- --default-toolchain none -y
~/.elan/bin/lean --version
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- name: Compile `DeBruijnSSA` library 🧐
run: |
lake -R exe cache get # download cache of mathlib docs.
lake -R build DeBruijnSSA # build DeBruijnSSA

0 comments on commit 15314b9

Please sign in to comment.