2020-08-23 05:04:57 +08:00
|
|
|
name: 📊 Static Checks
|
2023-04-04 21:56:53 +08:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-13 15:34:34 +08:00
|
|
|
|
2021-08-25 02:49:06 +08:00
|
|
|
concurrency:
|
2021-08-25 21:04:05 +08:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
2021-08-25 02:49:06 +08:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-13 15:34:34 +08:00
|
|
|
jobs:
|
2020-07-15 06:37:02 +08:00
|
|
|
static-checks:
|
2023-04-19 21:10:36 +08:00
|
|
|
name: Code style, file formatting, and docs
|
|
|
|
runs-on: ubuntu-22.04
|
2020-07-13 15:34:34 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 22:05:38 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-04-19 21:10:36 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Install APT dependencies
|
|
|
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
|
|
with:
|
2024-05-02 05:02:35 +08:00
|
|
|
packages: libxml2-utils
|
2020-07-13 15:34:34 +08:00
|
|
|
|
2023-04-19 21:10:36 +08:00
|
|
|
- name: Install Python dependencies and general setup
|
2020-08-11 23:14:47 +08:00
|
|
|
run: |
|
2024-05-02 05:02:35 +08:00
|
|
|
pip3 install pytest==7.1.2
|
2023-04-05 19:51:38 +08:00
|
|
|
git config diff.wsErrorHighlight all
|
2020-07-13 15:34:34 +08:00
|
|
|
|
2024-05-11 21:55:12 +08:00
|
|
|
- name: Get changed files
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
|
|
|
if [ "${{ github.event_name }}" == "pull_request" ]; then
|
|
|
|
files=$(git diff-tree --no-commit-id --name-only -r HEAD^1..HEAD 2> /dev/null || true)
|
|
|
|
elif [ "${{ github.event_name }}" == "push" -a "${{ github.event.forced }}" == "false" -a "${{ github.event.created }}" == "false" ]; then
|
|
|
|
files=$(git diff-tree --no-commit-id --name-only -r ${{ github.event.before }}..${{ github.event.after }} 2> /dev/null || true)
|
|
|
|
fi
|
|
|
|
echo "$files" >> changed.txt
|
|
|
|
cat changed.txt
|
2024-06-16 00:25:37 +08:00
|
|
|
files=$(echo "$files" | grep -v 'thirdparty' | xargs -I {} sh -c 'echo "\"./{}\""' | tr '\n' ' ')
|
2024-05-11 21:55:12 +08:00
|
|
|
echo "CHANGED_FILES=$files" >> $GITHUB_ENV
|
|
|
|
|
2023-07-01 21:32:30 +08:00
|
|
|
# This needs to happen before Python and npm execution; it must happen before any extra files are written.
|
|
|
|
- name: .gitignore checks (gitignore_check.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/gitignore_check.sh
|
|
|
|
|
2024-01-09 20:47:16 +08:00
|
|
|
- name: Style checks via pre-commit
|
|
|
|
uses: pre-commit/action@v3.0.1
|
2024-05-01 22:45:33 +08:00
|
|
|
with:
|
2024-05-11 21:55:12 +08:00
|
|
|
extra_args: --verbose --files ${{ env.CHANGED_FILES }}
|
2022-06-30 10:14:07 +08:00
|
|
|
|
2024-05-02 05:02:35 +08:00
|
|
|
- name: Python builders checks via pytest
|
2020-11-19 12:59:12 +08:00
|
|
|
run: |
|
2024-05-02 05:02:35 +08:00
|
|
|
pytest ./tests/python_build
|
2020-11-19 12:59:12 +08:00
|
|
|
|
2022-02-14 21:18:53 +08:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
2023-04-19 17:23:22 +08:00
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
|