Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 480 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 480 Bytes

.github

Repository for boilerplate workflows and CI for python projects.

.bandit.yaml
.pre-commit-config.yaml
.github
└── workflows

pre-commit

Pre-commit checks your files before committing. It can lint, format or do other checks on them.

Once you install it via

    pip3 install pre-commit --user

You can run it directly via

    pre-commit run --all-files

Or install it as a pre-commit hook

    pre-commit install

.github/workflows