Skip to content

Merge branch 'main' into entrypoint #1194

Merge branch 'main' into entrypoint

Merge branch 'main' into entrypoint #1194

Workflow file for this run

---
name: test
on:
push:
paths-ignore:
- '**.md'
- '**.cff'
- 'setup.py'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: |
pip install --upgrade pip
pip install .[test]
- name: Generate coverage report
run: |
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
...