Skip to content

Add debug test

Add debug test #13

Workflow file for this run

name: test
on:
push:
branches:
- wip/testing
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04
- ubuntu-20.04
- windows-latest
- windows-2022
- windows-2019
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Run Python Tests
run: python -m unittest discover