mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 23:39:18 +00:00
add unit tests workflow
This commit is contained in:
30
.github/workflows/unit_tests.yml
vendored
Normal file
30
.github/workflows/unit_tests.yml
vendored
Normal 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
|
||||||
Reference in New Issue
Block a user