Skip to content

cicd: fix packages definition #5

cicd: fix packages definition

cicd: fix packages definition #5

Workflow file for this run

name: test
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
tests:
uses: ./.github/workflows/_tests.yml
with:
python-versions: '["3.10", "3.12"]'
codecov:
name: Upload coverage reports to Codecov
needs:
- tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download coverage report
uses: actions/download-artifact@v4
with:
name: coverage-report
- name: Upload to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}