Skip to content

docs: improve and correct readme #7

docs: improve and correct readme

docs: improve and correct readme #7

Workflow file for this run

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