diff --git a/.gitthub/workflows/syntax.yml b/.gitthub/workflows/syntax.yml new file mode 100644 index 0000000..83b4268 --- /dev/null +++ b/.gitthub/workflows/syntax.yml @@ -0,0 +1,12 @@ +name: Check PHP Syntax +on: + push: + paths: + - './src' +jobs: + build_latex: + steps: + - name: PHP Syntax Checker (Lint) + uses: StephaneBour/actions-php-lint@7.3 + with: + dir: './src'