diff options
author | Son Ho | 2023-11-10 17:21:22 +0100 |
---|---|---|
committer | Son Ho | 2023-11-10 17:21:22 +0100 |
commit | e74bbd8c4b14686b2886754607036fe4f84d1d49 (patch) | |
tree | 92769a30b94c43f7d839ac064b68bc5c2a39c4c6 /.github/workflows | |
parent | f64cb8cd52871cf5463b68986e6d39e2c133313d (diff) |
Update the ci.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7904509b..2ea5dc4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,17 +22,13 @@ jobs: lean: # Lean isn't supported by Nix, so we need to add extra steps runs-on: [ubuntu-latest] steps: - #- run: wget -q https://raw.githubusercontent.com/leanprover-community/mathlib4/master/scripts/install_debian.sh && bash install_debian.sh ; rm -f install_debian.sh && source ~/.profile # Install curl - run: sudo apt update && sudo apt install curl - # Install Elan (https://leanprover-community.github.io/install/linux.html) - # We updated the script to make it run in non-interactive mode - #- run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh + # Install Elan (https://leanprover-community.github.io/install/linux.html) and Lean in + # non-interactive mode: - run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | bash -s -- -y - #- run: sudo apt-get update && sudo apt-get install make # Checkout the repo and download it to the runner - name: Checkout uses: actions/checkout@v4 # Verify - run: cd tests/lean && make - #- run: cd tests/lean && lake build |