Fix RegularTimeSeries.slice domain when slicing outside the data domain #55
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: Type Checking | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "*" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install project | |
| run: | | |
| uv venv venv -p 3.10 | |
| source venv/bin/activate | |
| uv pip install -e ".[dev]" | |
| - name: Run ty | |
| run: | | |
| source venv/bin/activate | |
| ty check --output-format github |