Reorganize workflow to validate syntax after tests (#211)

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

View File

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