Skip to content

improving test coverage #10

improving test coverage

improving test coverage #10

Workflow file for this run

name: Tests
on:
push:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
- name: Install dependencies
run: pdm install
- name: Run tests
run: pdm run pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml