fix: resolve CI workflow issues
Some checks failed
CI / test (push) Failing after 12s
CI / lint (push) Failing after 4s
CI / typecheck (push) Failing after 6s
CI / build (push) Failing after 4m55s

- Use python -m ruff check instead of ruff
- Use python -m mypy instead of mypy
- Fix YAML indentation issues
This commit is contained in:
2026-01-31 00:07:37 +00:00
parent a9244d99eb
commit 6aab8e86c9

View File

@@ -39,7 +39,7 @@ jobs:
run: pip install ruff
- name: Run linting
run: ruff check src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
run: python -m ruff check src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
typecheck:
runs-on: ubuntu-latest
@@ -55,7 +55,7 @@ jobs:
run: pip install mypy
- name: Run type checking
run: mypy src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
run: python -m mypy src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
build:
runs-on: ubuntu-latest