We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1085c79 commit 4ce246cCopy full SHA for 4ce246c
.github/workflows/lspec.yml
@@ -9,12 +9,13 @@ jobs:
9
name: Build
10
runs-on: ubuntu-latest
11
steps:
12
- - name: install elan
13
- run: |
14
- set -o pipefail
15
- curl -sSfL https://github.com/leanprover/elan/releases/download/v4.0.0/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
16
- ./elan-init -y --default-toolchain none
17
- echo "$HOME/.elan/bin" >> $GITHUB_PATH
18
- uses: actions/checkout@v2
+ - uses: cachix/install-nix-action@v22
+ with:
+ nix_path: nixpkgs=channel:nixos-24.11
+ - name: Install Lean
+ run: nix-shell
+ - name: Log versions
19
+ run: lean --version && lake --version
20
- name: run LSpec binary
21
run: lake exe lspec
0 commit comments