Skip to content

test: Add test for #126 issue #15

test: Add test for #126 issue

test: Add test for #126 issue #15

name: Run unit tests on pull request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Download test resources
run: |
pip install requests
python ./tests/resources.py download
- name: Run tests
run: |
python -m unittest discover ./tests