This repository was archived by the owner on Jun 8, 2026. It is now read-only.
[pre-commit.ci] pre-commit autoupdate #817
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: unit-test | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [next] | |
| tags: ['v*'] | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| manifest: pyproject.toml | |
| - name: Verify docstrings | |
| run: pixi run pydocstyle --convention=numpy src/ | |
| - name: Install ui test requirements | |
| run: pixi run playwright install | |
| - name: Tests without data repository | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: | | |
| pixi run test -- --tb=short -v | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v6 |