Skip to content

fail ruff format on modification #106

fail ruff format on modification

fail ruff format on modification #106

Workflow file for this run

name: QA

Check failure on line 1 in .github/workflows/QA.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/QA.yaml

Invalid workflow file

(Line: 29, Col: 9): 'run' is already defined
on:
pull_request:
push:
branches:
- main
jobs:
check-qa:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
architecture: x64
- name: Install dependencies (and project)
run: |
pip install -U pip
pip install -e .[lint,scripts,test,check]
- name: Check ruff
run: inv fix-ruff --args '--check'
run: inv lint-ruff
- name: Check pyright
run: inv check-pyright