File tree Expand file tree Collapse file tree 3 files changed +437
-0
lines changed Expand file tree Collapse file tree 3 files changed +437
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check code formatting
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - uses : actions/setup-python@v1
11
+ - name : Install packages
12
+ run : source tools/ci.sh && ci_code_formatting_setup
13
+ - name : Run code formatting
14
+ run : source tools/ci.sh && ci_code_formatting_run
15
+ - name : Check code formatting
16
+ run : git diff --exit-code
Original file line number Diff line number Diff line change
1
+ name : m5stack port
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ paths :
7
+ - ' .github/workflows/*.yml'
8
+ - ' tools/**'
9
+ - ' micropython/py/**'
10
+ - ' micropython/extmod/**'
11
+ - ' micropython/lib/**'
12
+ - ' micropython/drivers/**'
13
+ - ' m5stack/**'
14
+
15
+ jobs :
16
+ build_idf44 :
17
+ runs-on : ubuntu-20.04
18
+ steps :
19
+ - uses : actions/checkout@v2
20
+ with :
21
+ submodules : true
22
+ - name : Install packages
23
+ run : source tools/ci.sh && ci_esp32_idf44_setup
24
+ - name : Build
25
+ run : source tools/ci.sh && ci_esp32_build
You can’t perform that action at this time.
0 commit comments