Skip to content

docs: add MIT license #5

docs: add MIT license

docs: add MIT license #5

Workflow file for this run

name: Tests
on:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run all tests
run: |
python -m unittest discover tests -v