diff options
author | Gordon MacPherson <gordon@gordonite.tech> | 2020-07-14 23:37:02 +0100 |
---|---|---|
committer | Gordon MacPherson <gordon@gordonite.tech> | 2020-07-15 13:42:54 +0100 |
commit | 7bbae9809485ab7b80cdcf44c1195c1c76596468 (patch) | |
tree | c76f400d6df430e3461a93559c11c0af6b8a01ea /.github/workflows/static-checks.yml | |
parent | 1cc5d3590663990dad6009bee9aebb2d022e8a11 (diff) |
added MacOS and Linux to GitHub Actions
Diffstat (limited to '.github/workflows/static-checks.yml')
-rw-r--r-- | .github/workflows/static-checks.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml new file mode 100644 index 0000000000..095bf32e1f --- /dev/null +++ b/.github/workflows/static-checks.yml @@ -0,0 +1,32 @@ +name: Godot +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 + + - name: Install dependencies + run: | + sudo apt-get update -qq + sudo apt-get install -qq dos2unix recode clang-format + sudo pip3 install 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 |