Skip to content

Commit

Permalink
Add pytest workflow for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnazary committed Apr 20, 2024
1 parent 11c9a5f commit a781220
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pytest_windows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Manual pytest for windows

on:
workflow_dispatch:

jobs:
test:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python version
uses: actions/setup-python@v3
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_tests.txt
- name: run pytest
run: |
pytest

0 comments on commit a781220

Please sign in to comment.