diff options
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 664dc674..dc6b64f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,3 +17,8 @@ jobs: - run: nix build -L .#checks.x86_64-linux.aeneas-verify-coq #- run: nix build -L .#checks.x86_64-linux.aeneas-verify-lean - 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 + # Verify + - cd tests/lean && make |