2020-08-22 23:04:57 +02:00
|
|
|
name: 📊 Static Checks
|
2023-04-04 15:56:53 +02:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-13 09:34:34 +02:00
|
|
|
|
2021-08-24 20:49:06 +02:00
|
|
|
concurrency:
|
2021-08-25 15:04:05 +02:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
2021-08-24 20:49:06 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
jobs:
|
2020-07-15 00:37:02 +02:00
|
|
|
static-checks:
|
2023-04-19 15:10:36 +02:00
|
|
|
name: Code style, file formatting, and docs
|
|
|
|
runs-on: ubuntu-22.04
|
2020-07-13 09:34:34 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-08-25 13:44:22 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-19 15:10:36 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Install APT dependencies
|
|
|
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
|
|
with:
|
|
|
|
packages: dos2unix libxml2-utils moreutils
|
2020-07-13 09:34:34 +02:00
|
|
|
|
2023-04-19 15:10:36 +02:00
|
|
|
- name: Install Python dependencies and general setup
|
2020-08-11 17:14:47 +02:00
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
pip3 install black==22.3.0 pytest==7.1.2 mypy==0.971
|
2023-04-05 13:51:38 +02:00
|
|
|
git config diff.wsErrorHighlight all
|
2020-07-13 09:34:34 +02:00
|
|
|
|
2023-04-19 15:10:36 +02:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
|
|
|
run: |
|
|
|
|
if [ "${{ github.event_name }}" == "pull_request" ]; then
|
2023-04-20 17:51:53 +02:00
|
|
|
files=$(git diff-tree --no-commit-id --name-only -r ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} 2> /dev/null || true)
|
2023-04-19 15:10:36 +02:00
|
|
|
elif [ "${{ github.event_name }}" == "push" -a "${{ github.event.forced }}" == "false" -a "${{ github.event.created }}" == "false" ]; then
|
2023-04-20 17:51:53 +02:00
|
|
|
files=$(git diff-tree --no-commit-id --name-only -r ${{ github.event.before }}..${{ github.event.after }} 2> /dev/null || true)
|
2023-04-19 15:10:36 +02:00
|
|
|
fi
|
|
|
|
echo "$files" >> changed.txt
|
|
|
|
cat changed.txt
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: File formatting checks (file_format.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
bash ./misc/scripts/file_format.sh changed.txt
|
2020-07-13 09:34:34 +02:00
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
- name: Header guards formatting checks (header_guards.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
bash ./misc/scripts/header_guards.sh changed.txt
|
2022-07-23 23:41:51 +02:00
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: Python style checks via black (black_format.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
if grep -qE '*\.py|SConstruct|SCsub' changed.txt || [ ! -s changed.txt ]; then
|
|
|
|
bash ./misc/scripts/black_format.sh
|
|
|
|
else
|
|
|
|
echo "Skipping Python formatting as no Python files were changed."
|
|
|
|
fi
|
2020-07-13 09:34:34 +02:00
|
|
|
|
2022-08-23 15:21:46 +02:00
|
|
|
- name: Python scripts static analysis (mypy_check.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
if grep -qE '*\.py|SConstruct|SCsub' changed.txt || [ ! -s changed.txt ]; then
|
|
|
|
bash ./misc/scripts/mypy_check.sh
|
|
|
|
else
|
|
|
|
echo "Skipping Python static analysis as no Python files were changed."
|
|
|
|
fi
|
2022-08-23 15:21:46 +02:00
|
|
|
|
2022-06-30 04:14:07 +02:00
|
|
|
- name: Python builders checks via pytest (pytest_builders.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/pytest_builders.sh
|
|
|
|
|
2021-02-22 06:10:16 +01:00
|
|
|
- name: JavaScript style and documentation checks via ESLint and JSDoc
|
2020-11-19 05:59:12 +01:00
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
if grep -q "platform/web" changed.txt || [ ! -s changed.txt ]; then
|
|
|
|
cd platform/web
|
|
|
|
npm ci
|
|
|
|
npm run lint
|
|
|
|
npm run docs -- -d dry-run
|
|
|
|
else
|
|
|
|
echo "Skipping JavaScript formatting as no Web/JS files were changed."
|
|
|
|
fi
|
2020-11-19 05:59:12 +01:00
|
|
|
|
2022-02-14 14:18:53 +01:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
2023-04-19 11:23:22 +02:00
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
|
2022-02-14 14:18:53 +01:00
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: Documentation checks
|
|
|
|
run: |
|
2023-04-19 11:23:22 +02:00
|
|
|
doc/tools/make_rst.py --dry-run --color doc/classes modules platforms
|
2022-06-30 04:36:40 +02:00
|
|
|
|
|
|
|
- name: Style checks via clang-format (clang_format.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
clang-format --version
|
|
|
|
bash ./misc/scripts/clang_format.sh changed.txt
|
2022-08-27 03:14:27 +02:00
|
|
|
|
|
|
|
- name: Style checks via dotnet format (dotnet_format.sh)
|
|
|
|
run: |
|
2023-04-19 15:10:36 +02:00
|
|
|
if grep -q "modules/mono" changed.txt || [ ! -s changed.txt ]; then
|
|
|
|
bash ./misc/scripts/dotnet_format.sh
|
|
|
|
else
|
|
|
|
echo "Skipping dotnet format as no C# files were changed."
|
|
|
|
fi
|
2023-02-01 10:50:52 +01:00
|
|
|
|
|
|
|
- name: Spell checks via codespell
|
|
|
|
uses: codespell-project/actions-codespell@v1
|
|
|
|
with:
|
|
|
|
skip: ./.*,./**/.*,./bin,./thirdparty,*.desktop,*.gen.*,*.po,*.pot,*.rc,./AUTHORS.md,./COPYRIGHT.txt,./DONORS.md,./core/input/gamecontrollerdb.txt,./core/string/locales.h,./editor/project_converter_3_to_4.cpp,./misc/scripts/codespell.sh,./platform/android/java/lib/src/com,./platform/web/node_modules,./platform/web/package-lock.json
|
|
|
|
check_hidden: false
|
|
|
|
ignore_words_list: curvelinear,doubleclick,expct,findn,gird,hel,inout,lod,nd,numer,ot,te
|
|
|
|
only_warn: true
|