Bump requests from 2.32.5 to 2.33.0 #791
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: testing | |
| on: | |
| push: | |
| workflow_dispatch: # allows you to trigger manually | |
| jobs: | |
| test_pytest: | |
| name: Test remote_climate_data | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: uv sync --all-extras | |
| - name: Run tests | |
| run: uv run pytest -n auto --durations=20 | |
| test_notebooks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: uv sync --all-extras | |
| - name: Test notebooks | |
| run: uv run jupyter nbconvert --inplace --execute notebooks/demo.ipynb |