2020-09-10 02:06:46 +00:00
|
|
|
name: Check style
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- master
|
|
|
|
- staging.tmp
|
|
|
|
- trying.tmp
|
|
|
|
- staging-squash-merge.tmp
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-style:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-09-10 22:00:33 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Prepare
|
2020-09-10 02:06:46 +00:00
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
2020-12-02 14:08:24 +00:00
|
|
|
sudo apt-get install clang-format imagemagick ddnet-tools shellcheck pkg-config cmake libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev -y
|
2020-09-10 22:00:33 +00:00
|
|
|
mkdir release
|
|
|
|
cd release
|
|
|
|
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DDOWNLOAD_GTEST=OFF -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. ..
|
|
|
|
cmake --build . --config Release --target dilate --parallel
|
2020-12-02 14:08:24 +00:00
|
|
|
- name: Check clang-format
|
|
|
|
run: clang-format -version
|
|
|
|
- name: Check fix_style
|
|
|
|
run: scripts/fix_style.py --dry-run
|
|
|
|
- name: Check header guards
|
|
|
|
run: scripts/check_header_guards.py
|
|
|
|
- name: Check languages
|
|
|
|
run: scripts/languages/update_all.py
|
|
|
|
- name: Check shellcheck
|
|
|
|
run: find scripts -type f -name '*.sh' -print0 | xargs -0 shellcheck
|
|
|
|
- name: Check dilated images
|
|
|
|
run: scripts/check_dilate.sh release data
|
2020-12-02 13:56:12 +00:00
|
|
|
- name: Shellcheck
|
|
|
|
run: find . -name "*.sh" | xargs shellcheck
|