File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on :
4
+ push :
5
+ branches : ["main"]
6
+ pull_request :
7
+ branches : ["main"]
8
+
9
+ jobs :
10
+ lint :
11
+ name : Lint
12
+ runs-on : ubuntu-latest
13
+ container : swift:6.0-jammy
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : Get common swift-format config
18
+ run : |
19
+ curl https://github.com/apple/swift-mmio/blob/main/SupportingFiles/Tools/swift-format/.swift-format -o .swift-format
20
+ - name : Lint
21
+ run : |
22
+ swift-format lint --recursive --strict .
23
+
Original file line number Diff line number Diff line change @@ -8,4 +8,6 @@ manifest:
8
8
remote : zephyrproject-rtos
9
9
revision : main
10
10
import :
11
- name-allowlist : []
11
+ name-allowlist :
12
+ - cmsis # required by the ARM port
13
+ - hal_nordic # required by the custom_plank board (Nordic based)
You can’t perform that action at this time.
0 commit comments