diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index 85191fa9c4..fc46f8354c 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -55,8 +55,14 @@ jobs: run: | git fetch --depth=1 origin master git -c core.whitespace=blank-at-eol,blank-at-eof,space-before-tab,cr-at-eol,tab-in-indent \ - diff --check origin/master '*' \ - '!**/*akefile*' \ - '!**/*.sln' \ - '!**/*.vcproj' \ - '!**/*.xpm' + diff --check origin/master \ + ':!Makefile.in' \ + ':!config.guess' \ + ':!config.sub' \ + ':!configure' \ + ':!descrip.mms' \ + ':!install-sh' \ + ':!**/*akefile*' \ + ':!**/*.sln' \ + ':!**/*.vcproj' \ + ':!**/*.xpm'