Skip to content

Update build system to use pyproject.toml #103

Update build system to use pyproject.toml

Update build system to use pyproject.toml #103

Workflow file for this run

name: Code Coverage
on:
push:
pull_request:
branches: [ master ]
jobs:
coverage:
if: github.repository_owner == 'arkq'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Generate Coverage Report
run: |
pip install tox
tox
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: .tox/coverage.xml
disable_search: true