diff options
author | Mario Trangoni <mjtrangoni@gmail.com> | 2021-02-07 11:20:20 +0100 |
---|---|---|
committer | Mario Trangoni <mjtrangoni@gmail.com> | 2021-02-07 11:20:20 +0100 |
commit | 077089c4e4f7fcdff55d316811482c920cb62c7f (patch) | |
tree | f60b5b599a283757b751d0adacd786bc175a5728 /.github/workflows | |
parent | d570730e6d6bbc52382cc2f1029996d4a3f8041d (diff) | |
download | nx-libs-077089c4e4f7fcdff55d316811482c920cb62c7f.tar.gz nx-libs-077089c4e4f7fcdff55d316811482c920cb62c7f.tar.bz2 nx-libs-077089c4e4f7fcdff55d316811482c920cb62c7f.zip |
Add linter references
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linters.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index c6a238fd2..6bad1fd15 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -7,6 +7,7 @@ on: branches: [ 3.6.x ] jobs: + # see https://github.com/koalaman/shellcheck shellcheck: runs-on: ubuntu-20.04 steps: @@ -22,6 +23,7 @@ jobs: run: | find . -name "*.sh" | xargs shellcheck -e SC1004,SC2010,SC2035,SC2086 + # see https://github.com/danmar/cppcheck cppcheck: runs-on: ubuntu-20.04 steps: @@ -45,6 +47,8 @@ jobs: CPPCHECK_EXCLUDES='-i ./nx-X11/extras/ -i nx-X11/programs/Xserver/GL/mesa* -i ./.pc -i ./nx-X11/.build-exports -i ./nx-X11/exports -i ./doc' echo "$(cppcheck --version):"; cppcheck $CPPCHECK_OPTS $CPPCHECK_EXCLUDES .; + + # see https://www.viva64.com/en/pvs-studio/ pvs: environment: pvs runs-on: ubuntu-20.04 |