[bug fix] remove incorrect passing of "no orbital parameters set" string to "readable_granule_name" #433
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: Typecheck | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install package and test dependencies | |
| run: | | |
| python -m pip install .[complete] | |
| python -m pip install -r requirements-dev.txt | |
| - uses: jakebailey/pyright-action@v2 |