electrical delay in settings for vna #7733
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - "opened" | |
| - "reopened" | |
| - "synchronize" | |
| - "ready_for_review" | |
| jobs: | |
| code-quality: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 7 | |
| env: | |
| HOME_REPO: /home/repo | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: | | |
| **/pyproject.toml | |
| **/uv.lock | |
| python-version: "3.10" | |
| - name: Install the project | |
| run: uv sync --group dev --all-extras | |
| - name: Ruff | |
| run: uv run ruff check --output-format=github . | |
| - name: Mypy | |
| run: uv run mypy src --ignore-missing-imports | |
| - name: Mdformat | |
| run: uv run mdformat . | |
| - name: nbqa | |
| run: | | |
| # nbqa ruff . | |
| uv run nbqa mypy . --ignore-missing-imports | |
| uv run nbqa mdformat . |