Skip to content

Commit

Permalink
Merge pull request #5 from math280h/feature/ci
Browse files Browse the repository at this point in the history
Adding PHPStan as a Workflow
  • Loading branch information
math280h authored Feb 15, 2023
2 parents c6a3de7 + db024c2 commit 10a9156
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint-type.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint & Typing

on: [push]

jobs:
php-stan:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6

- uses: php-actions/phpstan@v3
with:
path: src/
level: 9

0 comments on commit 10a9156

Please sign in to comment.