Skip to content

Commit

Permalink
Merge pull request #14 from bollu/setup-ci
Browse files Browse the repository at this point in the history
chore: setup CI
  • Loading branch information
gleachkr authored Oct 8, 2024
2 parents 3ae17cd + ff12fc0 commit 74b8b74
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
# Run using manual triggers from GitHub UI:
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch: {}
# Run on every push:
push: {}
# Run on pull request activity:
pull_request: {}


jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:

- uses: actions/checkout@v4

- uses: leanprover/lean-action@v1
with:
auto-config: false
use-mathlib-cache: false
use-github-cache: true

- name: Run test suite
run: |
lake exe test | grep "PASS"

0 comments on commit 74b8b74

Please sign in to comment.