File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3232 use-mypy : true
3333 use-isort : false
3434 extra-mypy-options : " --ignore-missing-imports --show-error-codes"
35- extra-flake8-options : " --max-line-length=120 --ignore=E203,E402"
36- extra-pycodestyle-options : " --max-line-length=120 --ignore=E203,E402"
35+ extra-flake8-options : " --max-line-length=120 --ignore=E203,E402,W503 "
36+ extra-pycodestyle-options : " --max-line-length=120 --ignore=E203,E402,W503 "
Original file line number Diff line number Diff line change @@ -146,6 +146,8 @@ jobs:
146146| `use_cmake` | Determines wether CMake should be used to generate compile_commands.json file | `true` |
147147| `cmake_args` | Additional CMake arguments |`<empty>`|
148148| `force_console_print` | Output the action result to console, instead of creating the comment |`false`|
149+ | `compile_commands` | User generated compile_commands.json |`<empty>`|
150+ | `compile_commands_replace_prefix` | Whether we should replace the prefix of files inside user generated compile_commands.json file |`false`|
149151
150152**NOTE: `apt_pckgs` will run before `init_script`, just in case you need some packages installed before running the script**
151153
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ inputs:
2525 apt_pckgs :
2626 description : ' Additional (space separated) packages that need to be installed in order for project to compile'
2727 compile_commands :
28- description : ' user generated compile_commands.json'
28+ description : ' User generated compile_commands.json'
2929 compile_commands_replace_prefix :
3030 description : ' Whether we should replace the prefix of files inside user generated compile_commands.json file'
3131 default : false
You can’t perform that action at this time.
0 commit comments