Skip to content

Commit

Permalink
ci: add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Jan 22, 2024
1 parent 622e365 commit 961455d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
pull_request:
workflow_dispatch:

name: CI

jobs:
update_lean_xyz_branch_and_build:
runs-on: ubuntu-latest
name: Update lean-x.y.z branch and build project
steps:

- name: checkout project
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: update branch
if: github.ref == 'refs/heads/master'
uses: leanprover-contrib/update-versions-action@master

- name: build project
uses: leanprover-contrib/lean-build-action@master

0 comments on commit 961455d

Please sign in to comment.