Skip to content

updated readme

updated readme #8

Workflow file for this run

name: Coverage
on:
push:
branches: [ master ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
pip install pytest pytest-cov
pip install -e .[dev]
- name: Run tests with coverage
run: pytest --cov --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5

Check failure on line 21 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
with:
token: ${{ secrets.CODECOV_TOKEN }}