Skip to content

Commit

Permalink
build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jtristan committed Apr 18, 2024
1 parent c61ec95 commit 8cbf202
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/lean_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:

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
2 changes: 1 addition & 1 deletion SampCert/Foundations/Until.lean
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ open Classical Nat ENNReal BigOperators Finset

namespace SLang

variable {T : Type} [MeasurableSpace T]
variable {T : Type}

@[simp]
theorem until_zero (st : T) (body : SLang T) (cond : T → Bool) (x : T) :
Expand Down

0 comments on commit 8cbf202

Please sign in to comment.