Skip to content

test ci 4

test ci 4 #5

Workflow file for this run

name: Codecov
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install pytest
pip install pytest-cov
pip install .
- name: Run tests and collect coverage
run: pytest tests/ --cov=ugropy/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}