From d56be0e2628f9a474db4d1e3a227898efc133229 Mon Sep 17 00:00:00 2001 From: MatMasIt <34745996+MatMasIt@users.noreply.github.com> Date: Mon, 16 Aug 2021 23:37:08 +0200 Subject: [PATCH] Create syntax.yml --- .gitthub/workflows/syntax.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitthub/workflows/syntax.yml 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'