Skip to content

feat: add GitHub Actions workflow #1

feat: add GitHub Actions workflow

feat: add GitHub Actions workflow #1

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
python-tests:
name: Python Tests
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Run tests
shell: powershell
run: python -m unittest discover -s tests