-
-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #887 from aaronfranke/static-checks
Add more static checks and move to separate file to match main repo
- Loading branch information
Showing
48 changed files
with
337 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 📊 Static Checks | ||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
static-checks: | ||
name: Format (clang-format, black format, file format) | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
# Azure repositories are not reliable, we need to prevent Azure giving us packages. | ||
- 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 | ||
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" | ||
sudo apt-get update | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get install -qq dos2unix recode clang-format-13 libxml2-utils python3-pip moreutils | ||
sudo update-alternatives --remove-all clang-format || true | ||
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-13 100 | ||
sudo pip3 install black==22.3.0 pygments pytest==7.1.2 mypy==0.971 | ||
- name: File formatting checks (file_format.sh) | ||
run: | | ||
bash ./misc/scripts/file_format.sh | ||
- name: Header guards formatting checks (header_guards.sh) | ||
run: | | ||
bash ./misc/scripts/header_guards.sh | ||
- name: Python style checks via black (black_format.sh) | ||
run: | | ||
bash ./misc/scripts/black_format.sh | ||
- name: Python scripts static analysis (mypy_check.sh) | ||
run: | | ||
bash ./misc/scripts/mypy_check.sh | ||
- name: Bindings generation checks (ensures get_file_list returns all generated files) | ||
run: | | ||
python ./misc/scripts/check_get_file_list.py | ||
- name: Style checks via clang-format (clang_format.sh) | ||
run: | | ||
bash ./misc/scripts/clang_format.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.