1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-04 21:04:01 +03:00
Files
YoutubePlaylistSync/.github/workflows/unit-tests.yml
T

33 lines
754 B
YAML

name: Unit tests
on:
push:
branches: [ main, Next ]
pull_request:
branches: [ main, Next ]
jobs:
unit:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: "https://gitea.com/actions/checkout@v5"
- name: Create venv and install project
run: |
set -euo pipefail
python3 -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
# Install project (editable) and test deps
python -m pip install -e .[test] || python -m pip install -e .
python -m pip install pytest
- name: Run tests
run: |
set -euo pipefail
. .venv/bin/activate
pytest -q