2020-08-22 23:04:57 +02:00
|
|
|
name: 📊 Static Checks
|
2020-07-24 10:19:19 +02:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
static-checks:
|
|
|
|
name: Static Checks (clang-format, black format, file format, documentation checks)
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-11-19 05:59:12 +01:00
|
|
|
# Azure repositories are not reliable, we need to prevent Azure giving us packages.
|
2020-10-22 13:27:03 +02:00
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
|
|
run: |
|
|
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
|
|
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
|
2021-10-28 16:01:30 +02:00
|
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
|
|
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main"
|
2020-10-22 13:27:03 +02:00
|
|
|
sudo apt-get update
|
|
|
|
|
2020-07-24 10:19:19 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2022-03-16 23:01:02 +01:00
|
|
|
sudo apt-get install -qq dos2unix recode clang-format-13 libxml2-utils
|
2021-01-12 16:57:55 +01:00
|
|
|
sudo update-alternatives --remove-all clang-format
|
2021-10-28 16:01:30 +02:00
|
|
|
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-13 100
|
2021-11-03 13:57:49 +01:00
|
|
|
sudo pip3 install black==21.10b0 pygments
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
- name: File formatting checks (file_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/file_format.sh
|
|
|
|
|
|
|
|
- name: Style checks via clang-format (clang_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/clang_format.sh
|
|
|
|
|
|
|
|
- name: Python style checks via black (black_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/black_format.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: |
|
|
|
|
cd platform/javascript
|
|
|
|
npm ci
|
|
|
|
npm run lint
|
2021-02-22 06:10:16 +01:00
|
|
|
npm run docs -- -d dry-run
|
2020-11-19 05:59:12 +01:00
|
|
|
|
2022-03-16 23:01:02 +01:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml
|
|
|
|
|
2020-07-24 10:19:19 +02:00
|
|
|
- name: Documentation checks
|
|
|
|
run: |
|
2021-10-24 08:48:03 +02:00
|
|
|
doc/tools/make_rst.py --dry-run doc/classes modules
|