fixup! wip #108
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows CI | |
# This workflow is triggered on pushes to the repository. | |
on: [push] | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: windows-2019 | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: Setup conda | |
run: | | |
& "$Env:CONDA\condabin\conda.bat" init powershell | |
- name: "Build against python ${{ matrix.python-version }}" | |
run: | | |
& "$Env:CONDA\condabin\conda.bat" create --name py311 python=3.11 | |
& "$Env:CONDA\condabin\conda.bat" activate py311 | |
& "$Env:CONDA\condabin\conda.bat" install --yes --verbose --channel conda-forge glpk | |
$Env:GLPK = "$Env:CONDA_PREFIX\Library" | |
Get-ChildItem "$Env:GLPK\include" | |
python -VV | |
python -m site | |
python -m pip install --upgrade setuptools_scm | |
python setup.py bdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: windows-bdist | |
path: dist/ |