Skip to content

Commit

Permalink
Merge pull request #1 from fullfatthings/actions
Browse files Browse the repository at this point in the history
Actions
  • Loading branch information
jeremyfrench authored Feb 19, 2020
2 parents 1516b87 + 13f6ccf commit 81b55ab
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflow/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PHP Composer

on: [push, pull_request]

jobs:
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
tools: phpstan
- name: Static Analysis using PHPStan
run: phpstan analyse --no-progress src/

0 comments on commit 81b55ab

Please sign in to comment.