Skip to content

Commit

Permalink
add windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Aug 20, 2024
1 parent c8a1412 commit ce7e19d
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
os: ubuntu-latest
- name: macOS
os: macos-latest
- name: Windows
os: windows-latest
# - name: Windows
# os: windows-latest
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -37,3 +37,19 @@ jobs:
- run: npm audit
continue-on-error: true
- run: npm run test
wintest:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: install elan
run: |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh
- name: print lean and lake versions
- uses: actions/setup-node@v3
- run: npm install --loglevel verbose
- run: npm audit
continue-on-error: true
- run: npm run test

0 comments on commit ce7e19d

Please sign in to comment.