Skip to content

Commit

Permalink
Add phpcs to GitHub Action for integration alongside phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwins committed Sep 7, 2024
1 parent b8b2bbc commit 607c3ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Integrate"

on: [push]

jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: php-actions/composer@v6

- name: PHPStan Static Analysis
uses: php-actions/phpstan@v3

coding-standards:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: php-actions/composer@v6

- name: Coding Standard Check
uses: php-actions/phpcs@v1
13 changes: 0 additions & 13 deletions .github/workflows/phpstan.yml

This file was deleted.

0 comments on commit 607c3ab

Please sign in to comment.