Skip to content

Commit

Permalink
run PHPStan as github action
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Oct 26, 2020
1 parent 893835b commit 6de97ed
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PHPStan check

on: pull_request

jobs:
phpstan:
name: PHPStan

runs-on: ubuntu-latest

steps:
- name: "Checkout"
uses: actions/checkout@v2

- name: PHPStan
uses: docker://oskarstark/phpstan-ga
with:
args: analyse -c phpstan.neon

0 comments on commit 6de97ed

Please sign in to comment.