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
|
|
|
|
sudo apt-get update
|
|
|
|
|
2020-07-24 10:19:19 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-01-12 16:57:55 +01:00
|
|
|
sudo apt-get install -qq dos2unix recode clang-format-11
|
|
|
|
sudo update-alternatives --remove-all clang-format
|
|
|
|
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-11 100
|
2020-09-25 15:46:26 +02:00
|
|
|
sudo pip3 install black==20.8b1 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
|
|
|
|
|
2020-11-19 05:59:12 +01:00
|
|
|
- name: JavaScript style checks via ESLint
|
|
|
|
run: |
|
|
|
|
cd platform/javascript
|
|
|
|
npm ci
|
|
|
|
npm run lint
|
|
|
|
|
2020-07-24 10:19:19 +02:00
|
|
|
- name: Documentation checks
|
|
|
|
run: |
|
|
|
|
doc/tools/makerst.py --dry-run doc/classes modules
|