Add IFS Humidity Data (#27) #79
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the Repository | |
| uses: actions/checkout@v4 | |
| - name: Check with ruff | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: check | |
| fmt: | |
| name: Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the Repository | |
| uses: actions/checkout@v4 | |
| - name: Check with ruff | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: "format --diff --check" | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the Repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| run: uv python install | |
| - name: Install the package | |
| run: uv sync --refresh --all-extras --all-groups && uv pip install . | |
| - name: Run tests | |
| run: uv run pytest | |
| mypy: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the Repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| run: uv python install | |
| - name: Install the package | |
| run: uv sync --all-extras --all-groups && uv pip install . | |
| - name: Typecheck the package | |
| run: uv run mypy -p climatebenchpress.data_loader |