add unit tests workflow

This commit is contained in:
Simon 2024-05-21 19:10:22 +02:00
parent 8a2040aa26
commit cfa0cabd41
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 30 additions and 0 deletions

30
.github/workflows/unit_tests.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: python_unit_tests
on:
push:
paths:
- '**/*.py'
pull_request:
paths:
- '**/*.py'
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tubearchivist/requirements-dev.txt
- name: Run unit tests
run: pytest tubearchivist