Skip to content

run unit tests on windows #2

run unit tests on windows

run unit tests on windows #2

Workflow file for this run

name: Python Unit Tests
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
python -m unittest discover -s tests