Skip to content

fix(preproc): skip files libclang cannot load as a translation unit #93

fix(preproc): skip files libclang cannot load as a translation unit

fix(preproc): skip files libclang cannot load as a translation unit #93

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
pytest-cov:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install tox
run: python -m pip install tox tox-uv
- name: Run tests
run: tox -e py312-sphinx8-needs5 -- --cov --cov-branch --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}