Skip to content

License: bump year

License: bump year #6

Workflow file for this run

---
name: test # this string appears on badge
on:
- push
- pull_request
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
python --version # just use system python
pip list
pip install -U pip
pip install -U pytest
pip install -U pytest-cov
- name: Install code
run: |
pip install .
- name: Run tests
run: |
pytest -vv --cov=pprofiler --cache-clear --cov-report=xml tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: coverage.xml
verbose: true