Bump idna from 3.11 to 3.15 #71
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: ci_static_analysis | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| paths: | |
| - "src/**" | |
| - "tests/**" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| - "tests/**" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| jobs: | |
| ci: | |
| name: Run PR Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v6 | |
| - name: Set up Python Environment | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Sync environment and install dependencies | |
| run: uv sync --frozen --all-extras | |
| - name: Run Ruff Format - Formatting Check | |
| run: uv run ruff format ./src --check | |
| - name: Run Ruff - Linting and Import Sorting Check | |
| if: always() | |
| run: uv run ruff check ./src | |
| - name: Run mypy - Static Type Checking | |
| if: always() | |
| run: uv run mypy ./src --config-file ./pyproject.toml | |
| - name: Run numpydoc Documentation Check | |
| if: always() | |
| run: uv run numpydoc lint ./src/**/*.py |