-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33ff00d
commit da1ef0f
Showing
2 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: PHP Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/* | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
name: Static analysis for php ${{ matrix.php }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['8.0', '8.1', '8.2'] | ||
os: ['ubuntu-latest'] | ||
|
||
steps: | ||
- name: Checkout code base | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
tools: phpcs | ||
|
||
- name: Setup dependencies | ||
run: composer require -n --no-progress overtrue/phplint | ||
|
||
- name: PHP Lint | ||
if: success() || matrix.allow_failure | ||
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- . | ||
|
||
- name: PHP CodeSniffer | ||
if: success() || matrix.allow_failure | ||
run: phpcs -wps --colors |
This file was deleted.
Oops, something went wrong.