Skip to content

Create dependabot.yml #12

Create dependabot.yml

Create dependabot.yml #12

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
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage.xml