8000 ci: Added pre-commit including ruff linting & formatting by marksweb · Pull Request #7788 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

ci: Added pre-commit including ruff linting & formatting #7788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Adjust ruff steps
  • Loading branch information
marksweb committed Jan 28, 2024
commit f29b2508ed8e222168b2eec52c1fa65c8bea2105
7DFD
8 changes: 6 additions & 2 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:

- run: python -Im pip install --user ruff

- name: Run ruff
- name: Run ruff on cms
working-directory: ./src
run: ruff --output-format=github cms menus
run: ruff --output-format=github cms

- name: Run ruff on menus
working-directory: ./src
run: ruff --output-format=github menus
0