2020-08-22 21:04:57 +00:00
|
|
|
name: 📊 Static Checks
|
2023-04-04 13:56:53 +00:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-13 07:34:34 +00:00
|
|
|
|
2021-08-24 18:49:06 +00:00
|
|
|
concurrency:
|
2021-08-25 13:04:05 +00:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
2021-08-24 18:49:06 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-13 07:34:34 +00:00
|
|
|
jobs:
|
2020-07-14 22:37:02 +00:00
|
|
|
static-checks:
|
2023-04-19 13:10:36 +00:00
|
|
|
name: Code style, file formatting, and docs
|
|
|
|
runs-on: ubuntu-22.04
|
2020-07-13 07:34:34 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 14:05:38 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-04-19 13:10:36 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Install APT dependencies
|
|
|
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
|
|
with:
|
2024-05-01 21:02:35 +00:00
|
|
|
packages: libxml2-utils
|
2020-07-13 07:34:34 +00:00
|
|
|
|
2023-04-19 13:10:36 +00:00
|
|
|
- name: Install Python dependencies and general setup
|
2020-08-11 15:14:47 +00:00
|
|
|
run: |
|
2024-05-01 21:02:35 +00:00
|
|
|
pip3 install pytest==7.1.2
|
2023-04-05 11:51:38 +00:00
|
|
|
git config diff.wsErrorHighlight all
|
2020-07-13 07:34:34 +00:00
|
|
|
|
2024-05-11 13:55:12 +00: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-15 16:25:37 +00:00
|
|
|
files=$(echo "$files" | grep -v 'thirdparty' | xargs -I {} sh -c 'echo "\"./{}\""' | tr '\n' ' ')
|
2024-05-11 13:55:12 +00:00
|
|
|
echo "CHANGED_FILES=$files" >> $GITHUB_ENV
|
|
|
|
|
2023-07-01 13:32:30 +00: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 12:47:16 +00:00
|
|
|
- name: Style checks via pre-commit
|
|
|
|
uses: pre-commit/action@v3.0.1
|
2024-05-01 14:45:33 +00:00
|
|
|
with:
|
2024-05-11 13:55:12 +00:00
|
|
|
extra_args: --verbose --files ${{ env.CHANGED_FILES }}
|
2022-06-30 02:14:07 +00:00
|
|
|
|
2024-05-01 21:02:35 +00:00
|
|
|
- name: Python builders checks via pytest
|
2020-11-19 04:59:12 +00:00
|
|
|
run: |
|
2024-05-01 21:02:35 +00:00
|
|
|
pytest ./tests/python_build
|
2020-11-19 04:59:12 +00:00
|
|
|
|
2022-02-14 13:18:53 +00:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
2023-04-19 09:23:22 +00:00
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
|