Skip to content

Commit

Permalink
Add Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Oct 24, 2024
1 parent ed5993f commit 758e94b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build on Windows ⚙️

on: [ push, pull_request ]

jobs:
main:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v5
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}

- name: Install requirements 📦
run: |
pip install -e .
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -r docs/requirements.txt
- name: run tests ⚙️
run: python -m pytest

0 comments on commit 758e94b

Please sign in to comment.