We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ca277 commit 2942dfcCopy full SHA for 2942dfc
.github/workflows/code-check.yml
@@ -12,7 +12,9 @@ jobs:
12
steps:
13
- uses: actions/checkout@v2
14
- name: Prepare
15
- run: sudo apt-get install -y cppcheck
+ run: |
16
+ sudo apt-get update
17
+ sudo apt-get install -y cppcheck
18
- name: Code static check for config
19
run: sh ./code-check/code-static-check.sh ./kubernetes/config/
20
- name: Code static check for examples
@@ -22,7 +24,9 @@ jobs:
22
24
23
25
26
- run: sudo apt-get install -y indent
27
28
29
+ sudo apt-get install -y indent
30
- name: Code style check for config
31
run: |
32
find ./kubernetes/config/ -type f -regextype posix-extended -regex ".*\.(c|h)" -exec sh ./code-check/code-style-check.sh {} \;
0 commit comments