Skip to content

github workflows updated, small tests fixes #30

github workflows updated, small tests fixes

github workflows updated, small tests fixes #30

Workflow file for this run

name: Test
on: [ pull_request ]
jobs:
test:
strategy:
matrix:
# https://devguide.python.org/versions/
python: [ 3.8, 3.9, 3.10, 3.11, 3.12 ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Discover tests
run: python -m unittest discover -s "./_tests"