Reorganize workflow to validate syntax after tests

Reordered steps to validate source syntax after testing mods.
This commit is contained in:
Meliox 2026-06-14 01:40:20 +02:00 committed by GitHub
parent 40ff13cc33
commit 15e44f3b5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,9 +24,6 @@ jobs:
- uses: actions/checkout@v4
- name: Validate source syntax
run: bash src/Scripts/test/test-syntax.sh all
- name: Download deb artifact
uses: actions/download-artifact@v4
with:
@ -41,4 +38,7 @@ jobs:
run: apt-get install -y ./deb/*.deb
- name: Test all mods
run: bash src/Scripts/test/test-patches.sh all
run: bash src/Scripts/test/test-patches.sh all
- name: Validate source syntax
run: bash src/Scripts/test/test-syntax.sh all