Skip to content

Add CI workflow for running unittests. #12

Add CI workflow for running unittests.

Add CI workflow for running unittests. #12

Workflow file for this run

name: Check Tests
on: [ pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the Python version you want to use
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: pytest tests/