Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1023 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 1023 Bytes

Mu2e/CI

CI test status pre-commit.ci status

A GitHub bot (@FNALbuild) which handles continuous integration and testing workflows for the Mu2e Offline software. It is inspired by CMS-BOT.

Thanks to Patrick Gartung (@gartung), and the authors of CMS-BOT.

Development

pre-commit

This repository uses pre-commit and pre-commit.ci to enforce code style and fix problems. pre-commit.ci will push fixes automatically to branches and pull requests.

Running a check locally

You will need pre-commit.

pip install pre-commit

To install commit hooks,

pre-commit install

pre-commit will check everything before a git commit operation.

To run and apply fixes,

pre-commit run --all