Skip to content

Bump actions/upload-artifact from 5 to 6 #144

Bump actions/upload-artifact from 5 to 6

Bump actions/upload-artifact from 5 to 6 #144

Workflow file for this run

name: Codecov
on: [push, pull_request]
jobs:
check_coverage:
name: Generate codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
name: Install Python
- name: Generate coverage report
run: |
pip install pytest
pip install pytest-cov
pip install -e .
pytest --cov=dtw --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}