Skip to content

Commit

Permalink
Merge pull request #85 from alissa-tung/patch-1
Browse files Browse the repository at this point in the history
ci: init
  • Loading branch information
jjdishere authored Sep 18, 2023
2 parents f912a80 + d34d84b commit 7cca288
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

permissions:
contents: write

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Install Lean
run: |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s - -y --default-toolchain `cat ./lean-toolchain`
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- run: lake exe cache get && lake build

0 comments on commit 7cca288

Please sign in to comment.