Add static formatting checks for GitHub Actions

This commit is contained in:
Aaron Franke 2020-07-13 03:34:34 -04:00
parent db1eb909fe
commit 79a2e4c1ab
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
5 changed files with 278 additions and 0 deletions

31
.github/workflows/static_checks.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Static checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq dos2unix recode clang-format
pip3 install --user black pygments
- 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
- name: Documentation checks
run: |
doc/tools/makerst.py --dry-run doc/classes modules