Run Tests for Kobbe (Windows) #2
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: Run Tests for Kobbe (Windows) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
python-version: [ "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 # Use the latest version of actions/checkout | |
- name: Set up Python | |
uses: actions/setup-python@v4 # Use the latest version of actions/setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install -e '.[dev]' # This installs the optional dev dependencies, including pytest | |
- name: Run tests | |
run: | | |
pytest | |
env: | |
CI: true |