Skip to content

Bump version: 1.7.3 → 1.7.4 #158

Bump version: 1.7.3 → 1.7.4

Bump version: 1.7.3 → 1.7.4 #158

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 ".[plots]"
pytest --cov=dtw --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}