File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 77 description : ' which branch to test'
88 default : ' main'
99 required : true
10+ pull_request :
1011
1112jobs :
1213 cpp-linter :
3031 python-version : 3.x
3132
3233 - name : Install workflow deps
33- run : python -m pip install clang-tools git+https://github.com/${{ matrix.repo }}/@${{ matrix.branch }}
34+ # run: python -m pip install clang-tools git+https://github.com/${{ matrix.repo }}/@${{ matrix.branch }}
35+ run : |
36+ python -m pip install clang-tools
37+ python -m pip install -i https://test.pypi.org/simple/ cpp-linter
3438
3539 - name : Install clang-tools
3640 run : clang-tools --install ${{ matrix.clang-version }} --directory ${{ runner.temp }}/llvm
Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ size_t dummyFunc(size_t i) { return i; }
88
99int main ()
1010{
11- for (;;)
12- break ;
11+ for (;;) break ;
1312
1413 printf (" Hello world!\n " );
1514
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class Dummy {
77 int numb;
88
99 public:
10- void *not_usefull (char *str){
10+ void *not_useful (char *str){
1111 useless = str;
1212 return 0 ;
1313 }
You can’t perform that action at this time.
0 commit comments