(Almost) add new setting; reduce fan speed for overhangs. #1129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint-formatter | |
on: | |
push: | |
paths: | |
- 'include/**/*.h*' | |
- 'src/**/*.c*' | |
pull_request: | |
types: [ opened ] | |
paths: | |
- 'include/**/*.h*' | |
- 'src/**/*.c*' | |
jobs: | |
lint-formatter-job: | |
uses: ultimaker/cura-workflows/.github/workflows/lint-formatter.yml@main | |
with: | |
file_patterns: +(include|src)/**/*.+(h|hpp|c|cpp) | |
command: clang-format --verbose -i | |
commit_message: "Apply clang-format" |