File tree 5 files changed +38
-4
lines changed
5 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 12
12
13
13
KERNEL_IGNORED_EXTENSIONS = [
14
14
'.yml' ,
15
+ '.yaml' ,
15
16
'.css' ,
16
17
'.idx' ,
17
18
'.md' ,
@@ -92,4 +93,3 @@ def main():
92
93
93
94
if __name__ == '__main__' :
94
95
exit (main ())
95
-
Original file line number Diff line number Diff line change 1
1
name : CI Checks
2
2
on :
3
- push :
4
- branches : ["**"]
5
3
pull_request :
6
4
branches : [main]
7
5
workflow_dispatch :
44
42
- name : URL Checker
45
43
run : |
46
44
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 26
26
27
27
/* Standard includes. */
28
28
#include <stdlib.h>
29
+ /* make a change that breaks things */
29
30
30
31
/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining
31
32
* 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