Skip to content

ci: add a windows runner #4

ci: add a windows runner

ci: add a windows runner #4

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge
auto-activate: true
python-version: ${{ matrix.python-version }}
- name: Install GDAL
run: conda install conda-forge::gdal
- name: Install CRAM
run: conda install conda-forge::cram
- name: Test
run: cram tests -v