File tree Expand file tree Collapse file tree 5 files changed +38
-4
lines changed Expand file tree Collapse file tree 5 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 1212
1313KERNEL_IGNORED_EXTENSIONS = [
1414 '.yml' ,
15+ '.yaml' ,
1516 '.css' ,
1617 '.idx' ,
1718 '.md' ,
@@ -92,4 +93,3 @@ def main():
9293
9394if __name__ == '__main__' :
9495 exit (main ())
95-
Original file line number Diff line number Diff line change 11name : CI Checks
22on :
3- push :
4- branches : ["**"]
53 pull_request :
64 branches : [main]
75 workflow_dispatch :
4442 - name : URL Checker
4543 run : |
4644 bash kernel/.github/actions/url_verifier.sh kernel
47-
Original file line number Diff line number Diff line change 1+ name : Linters
2+
3+ on :
4+ pull_request :
5+
6+ jobs :
7+ pre-commit :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : actions/setup-python@v2
12+ - id : file_changes
13+ 14+ with :
15+ output : ' '
16+ -
uses :
pre-commit/[email protected] 17+ with :
18+ extra_args : --files ${{ steps.file_changes.outputs.files}}
Original file line number Diff line number Diff line change 1+ # See https://pre-commit.com for more information
2+ # See https://pre-commit.com/hooks.html for more hooks
3+ repos :
4+ - repo : https://github.com/pre-commit/pre-commit-hooks
5+ rev : v3.4.0
6+ hooks :
7+ - id : trailing-whitespace
8+ - id : end-of-file-fixer
9+ - id : check-yaml
10+ - id : check-added-large-files
11+ - id : mixed-line-ending
12+ args : [--fix=auto]
13+ - id : check-case-conflict
14+ - id : check-executables-have-shebangs
15+ - id : check-json
16+ - id : check-merge-conflict
17+ - id : check-symlinks
18+ - id : check-ast
Original file line number Diff line number Diff line change 2626
2727/* Standard includes. */
2828#include <stdlib.h>
29+ /* make a change that breaks things */
2930
3031/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining
3132 * all the API functions to use the MPU wrappers. That should only be done when
You can’t perform that action at this time.
0 commit comments