Merge pull request #6 from ezmsg-org/lrr #52
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: Test package | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ["3.12", "3.13"] | |
| os: | |
| - "ubuntu-latest" | |
| - "windows-latest" | |
| - "macos-latest" | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the project | |
| run: uv sync | |
| - name: Lint | |
| run: | |
| uv tool run ruff check --output-format=github src | |
| - name: Run unit tests | |
| run: uv run pytest tests/unit tests/dim_reduce -v | |
| - name: Run integration tests | |
| run: uv run pytest tests/integration -v --tb=long | |
| env: | |
| PYTHONFAULTHANDLER: 1 |