Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Aug 20, 2024
1 parent 9243c96 commit d6ebb4b
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,27 @@ jobs:
build: true
test: false
lint: false
- name: install elan (Windows)
if: matrix.os == 'windows-latest'
run: |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf > elan-init.sh
sh elan-init.sh -y
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- name: lean bui.d (Windows)
- name: install elan
if: matrix.os == 'windows-latest'
run: |
curl -O --location https://raw.githubusercontent.com/leanprover/elan/master/elan-init.ps1
echo 1 | powershell -ExecutionPolicy Bypass -f elan-init.ps1
del elan-init.ps1
(Resolve-Path ~/.elan/bin).Path >> $Env:GITHUB_PATH
cd demo\server\LeanProject
lake build
shell: pwsh
# - name: install elan (Windows)
# if: matrix.os == 'windows-latest'
# run: |
# curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf > elan-init.sh
# sh elan-init.sh -y
# echo "$HOME/.elan/bin" >> $GITHUB_PATH
# - name: lean bui.d (Windows)
# if: matrix.os == 'windows-latest'
# run: |
# cd demo\server\LeanProject
# lake build
- uses: actions/setup-node@v3
- run: npm install --loglevel verbose
- run: npm audit
Expand Down

0 comments on commit d6ebb4b

Please sign in to comment.