File tree 1 file changed +31
-31
lines changed
1 file changed +31
-31
lines changed Original file line number Diff line number Diff line change 7
7
pull_request :
8
8
branches : ["main"]
9
9
jobs :
10
- test :
11
- strategy :
12
- fail-fast : false
13
- matrix :
14
- include :
15
- - name : Linux
16
- os : ubuntu-latest
17
- - name : macOS
18
- os : macos-latest
19
- # - name: Windows
20
- # os: windows-latest
21
- name : ${{ matrix.name }}
22
- runs-on : ${{ matrix.os }}
23
- steps :
24
- - uses : actions/checkout@v4
25
- with :
26
- submodules : true
27
- # uses lean standard action with all default input values
28
- - uses : leanprover/lean-action@v1
29
- with :
30
- lake-package-directory : " demo/server/LeanProject"
31
- use-mathlib-cache : false
32
- build : true
33
- test : false
34
- lint : false
35
- - uses : actions/setup-node@v3
36
- - run : npm install --loglevel verbose
37
- - run : npm audit
38
- continue-on-error : true
39
- - run : npm run test
10
+ # test:
11
+ # strategy:
12
+ # fail-fast: false
13
+ # matrix:
14
+ # include:
15
+ # - name: Linux
16
+ # os: ubuntu-latest
17
+ # - name: macOS
18
+ # os: macos-latest
19
+ # # - name: Windows
20
+ # # os: windows-latest
21
+ # name: ${{ matrix.name }}
22
+ # runs-on: ${{ matrix.os }}
23
+ # steps:
24
+ # - uses: actions/checkout@v4
25
+ # with:
26
+ # submodules: true
27
+ # # uses lean standard action with all default input values
28
+ # - uses: leanprover/lean-action@v1
29
+ # with:
30
+ # lake-package-directory: "demo/server/LeanProject"
31
+ # use-mathlib-cache: false
32
+ # build: true
33
+ # test: false
34
+ # lint: false
35
+ # - uses: actions/setup-node@v3
36
+ # - run: npm install --loglevel verbose
37
+ # - run: npm audit
38
+ # continue-on-error: true
39
+ # - run: npm run test
40
40
wintest :
41
41
name : Windows
42
42
runs-on : windows-latest
46
46
submodules : true
47
47
- name : install elan
48
48
run : |
49
- curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf
49
+ curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf > elan-init.sh
50
50
sh elan-init.sh -y
51
51
echo "$HOME/.elan/bin" >> $GITHUB_PATH
52
52
- name : print lean and lake versions
You can’t perform that action at this time.
0 commit comments