mirror of
https://github.com/Terranom674/Piwigo_Bratonien_Tools.git
synced 2026-09-19 17:34:31 +00:00
33 lines
681 B
YAML
33 lines
681 B
YAML
name: Syntax Check
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
syntax:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Repository auschecken
|
|
uses: actions/checkout@v4
|
|
|
|
- name: PHP installieren
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.2'
|
|
coverage: none
|
|
|
|
- name: PHP Syntax pruefen
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
while IFS= read -r -d '' file; do
|
|
php -l "$file"
|
|
done < <(find . -type f -name '*.php' -print0)
|
|
|
|
- name: Python Syntax pruefen
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
python3 -m compileall -q runtime
|