From d2eab4f446409dbc552bb5843c5370226844bcf1 Mon Sep 17 00:00:00 2001 From: osaajani <> Date: Mon, 22 Jun 2020 19:58:01 +0200 Subject: [PATCH] codestyle ci actions --- .github/workflows/codestyle.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/codestyle.yml diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml new file mode 100644 index 0000000..e45f624 --- /dev/null +++ b/.github/workflows/codestyle.yml @@ -0,0 +1,21 @@ +# This is a basic workflow to help you get started with Actions + +name: CodeStyle + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: [push] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + phpstan: + name: PHPStan + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: PHPStan + uses: docker://oskarstark/phpstan-ga + with: + args: analyse --configuration="./tests/phpstan/config.neon" --autoload-file="./descartes/load.php" + +