Skip to content

Commit

Permalink
Test Python wheel on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Meister committed Apr 16, 2024
1 parent bd23aa6 commit 67753ca
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,22 @@ jobs:
id: download
with:
name: windows-installer
- name: Install and test
- name: Install and test installer
run: |
${{steps.download.outputs.download-path}}\concordance-installer.exe /S
Start-Sleep -Seconds 5
cd "C:\Program Files (x86)\Concordance"
.\concordance.exe --version
- uses: actions/download-artifact@v3
id: downloadwheel
with:
name: windows-wheel
- uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x86'
- name: Install and test wheel
run: |
pip install (gci ${{steps.downloadwheel.outputs.download-path}}\*.whl).FullName
python3 -c 'import libconcord; print(libconcord)'

0 comments on commit 67753ca

Please sign in to comment.