Skip to content

Add github actions

Add github actions #1

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov # Можно добавить другие зависимости
- name: Run pytest
run: |
pytest --cov=./ --cov-report=xml -v