diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc6b64f6..6fba43a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,6 @@ jobs: - run: nix build -L .#checks.x86_64-linux.aeneas-verify-hol4 # Lean isn't supported by Nix, so we need to add extra steps # Install Elan (https://leanprover-community.github.io/install/linux.html) - - curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh + - runs: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh # Verify - - cd tests/lean && make + - run: cd tests/lean && make |