2020-08-22 21:04:57 +00:00
|
|
|
name: 📊 Static Checks
|
2020-07-13 07:34:34 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
2021-08-24 18:49:06 +00:00
|
|
|
concurrency:
|
2021-08-25 13:04:05 +00:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
2021-08-24 18:49:06 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-13 07:34:34 +00:00
|
|
|
jobs:
|
2020-07-14 22:37:02 +00:00
|
|
|
static-checks:
|
|
|
|
name: Static Checks (clang-format, black format, file format, documentation checks)
|
2020-07-13 07:34:34 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-08-25 11:44:22 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-07-13 07:34:34 +00:00
|
|
|
|
2023-02-06 13:23:14 +00:00
|
|
|
- name: Install dependencies
|
2020-08-11 15:14:47 +00:00
|
|
|
run: |
|
2021-10-28 14:01:30 +00:00
|
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
2023-01-10 17:18:57 +00:00
|
|
|
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main"
|
2020-08-11 15:14:47 +00:00
|
|
|
sudo apt-get update
|
2023-01-12 22:16:02 +00:00
|
|
|
sudo apt-get install -qq dos2unix clang-format-15 libxml2-utils python3-pip moreutils
|
2022-09-05 09:55:51 +00:00
|
|
|
sudo update-alternatives --remove-all clang-format || true
|
2023-01-10 17:18:57 +00:00
|
|
|
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-15 100
|
2022-08-23 13:21:46 +00:00
|
|
|
sudo pip3 install black==22.3.0 pygments pytest==7.1.2 mypy==0.971
|
2020-07-13 07:34:34 +00:00
|
|
|
|
|
|
|
- name: File formatting checks (file_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/file_format.sh
|
|
|
|
|
2022-07-23 21:41:51 +00:00
|
|
|
- name: Header guards formatting checks (header_guards.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/header_guards.sh
|
|
|
|
|
2020-07-13 07:34:34 +00:00
|
|
|
- name: Python style checks via black (black_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/black_format.sh
|
|
|
|
|
2022-08-23 13:21:46 +00:00
|
|
|
- name: Python scripts static analysis (mypy_check.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/mypy_check.sh
|
|
|
|
|
2022-06-30 02:14:07 +00:00
|
|
|
- name: Python builders checks via pytest (pytest_builders.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/pytest_builders.sh
|
|
|
|
|
2021-02-22 05:10:16 +00:00
|
|
|
- name: JavaScript style and documentation checks via ESLint and JSDoc
|
2020-11-19 04:59:12 +00:00
|
|
|
run: |
|
2022-08-28 18:27:45 +00:00
|
|
|
cd platform/web
|
2020-11-19 04:59:12 +00:00
|
|
|
npm ci
|
|
|
|
npm run lint
|
2021-02-22 05:10:16 +00:00
|
|
|
npm run docs -- -d dry-run
|
2020-11-19 04:59:12 +00:00
|
|
|
|
2022-02-14 13:18:53 +00:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml
|
|
|
|
|
2020-07-13 07:34:34 +00:00
|
|
|
- name: Documentation checks
|
|
|
|
run: |
|
2022-06-10 22:16:05 +00:00
|
|
|
doc/tools/make_rst.py --dry-run --color doc/classes modules
|
2022-06-30 02:36:40 +00:00
|
|
|
|
|
|
|
- name: Style checks via clang-format (clang_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/clang_format.sh
|
2022-08-27 01:14:27 +00:00
|
|
|
|
|
|
|
- name: Style checks via dotnet format (dotnet_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/dotnet_format.sh
|
2023-02-01 09:50:52 +00: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
|