File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 39
39
env :
40
40
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
41
41
- name : Install dependencies
42
- run : docker exec cpplinter bash -c "pip3 install -r /workspace/.github/scripts/requirements.txt"
42
+ run : |
43
+ docker exec cpplinter bash -c "pip3 install -r /workspace/.github/scripts/requirements.txt"
44
+ docker exec cpplinter bash -c "pip3 install -r /workspace/requirements-dev.txt"
43
45
- name : Lint C++
44
46
run : docker exec cpplinter bash -c "cd /workspace && python3 /workspace/.github/scripts/run_cpp_linter.py"
45
47
79
81
- name : Install dependencies
80
82
run : |
81
83
docker exec pylinter bash -c "pip3 install -r /workspace/.github/scripts/requirements.txt"
82
- docker exec pylinter bash -c "pip3 install -r /workspace/tools/linter/ requirements.txt"
84
+ docker exec pylinter bash -c "pip3 install -r /workspace/requirements-dev .txt"
83
85
- name : Lint Python
84
86
run : docker exec pylinter bash -c "cd /workspace && python3 /workspace/.github/scripts/run_py_linter.py"
You can’t perform that action at this time.
0 commit comments