Skip to content

Fixing coverage badge ref #3

Fixing coverage badge ref

Fixing coverage badge ref #3

Workflow file for this run

name: CI - Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install tox
run: pip install tox
- name: Run tox
run: tox
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage
path: ./.coverage
- name: Upload coverage to codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}