Shared workflows for Meero GitHub Actions runs.
See how to reuse workflows in GitHub Actions.
You can call workflows stored in this repository as follows:
jobs:
build-documentation:
uses: meero-com/github-actions-shared-workflows/.github/workflows/build-documentation.yml@mainBeware of using a @ref (@main in the example above) which suits your stability requirements in your workflow:
- Use
@mainif you always want to use the latest version of the workflow. - Use
@<tag>if you wan to use a specific frozen version of the workflow.
This repository use pre-commit
- install pre-commit
- run once
pre-commit installto automatically execute pre-commit hooks at commit - run
pre-commit run -awhenever you want to run hooks on the complete repository