1 comment (1 comment)0 reactions (0 reactions)0 assignees (0 assignees)Python909 forks (909 forks)batch import
PR welcomegood first issue
Repository metrics
- Stars
- 6,628 stars (6,628 stars)
- PR merge metrics
- Avg merge 51d 7h (Avg merge 51d 7h)16 merged PRs in 30d (16 merged PRs in 30d)
Description
After #634, we can add a style check job in CI to complement https://pre-commit.ci and the pre-commit hooks we have, running on PRs.
Contributor guide
- Research direction
- First, review issue #634 to understand the context and the existing pre commit hooks. Then, examine the current CI workflows in the .github/workflows/ directory to see the structure and naming patterns. Create a new workflow file that runs style checks (e.g., flake8 or black) on PRs, ensuring it complements the pre commit.ci integration. The workflow should be triggered on pull requests and should run the same checks as the pre commit hooks.
- Tech stack
- pythongithub actions
- Domain
- ci cddevops
- Issue type
- Feature
- Prerequisites
- Read issue #634GitHub Actions basicspre commit knowledge