Skip to content

add dev dep

add dev dep #197

Workflow file for this run

name: build on Windows ⚙️
on: [ push, pull_request ]
jobs:
main:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v6
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements 📦
run: |
pip install -e .
pip install ".[test]"
- name: run tests ⚙️
run: pytest tests/