Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored workflow to run without custom actions #730

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 30 additions & 11 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: PHP

on:
pull_request: {}
push:
branches:
- master
- pull_request
- push

jobs:
lint:
Expand All @@ -13,26 +11,47 @@ jobs:

steps:
- name: Checkout
uses: actions/[email protected]
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: cs2pr

- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install Composer dependencies
uses: litusproject/composer-install-action@main
run: >
composer install \
--no-interaction \
--no-progress \
--prefer-dist

- name: Run PHP_CodeSniffer
if: ${{ always() }}
uses: litusproject/php-codesniffer-action@main
if: always()
run: ./vendor/bin/phpcs -q --report=checkstyle | cs2pr --graceful-warnings

- name: Run PHPStan
if: ${{ always() }}
uses: litusproject/phpstan-action@main
if: always()
run: ./vendor/bin/phpstan analyse --error-format=github --no-progress

test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v4

- name: Bring up containers
run: docker-compose up -d
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan": "^1.10",
"slevomat/coding-standard": "^8.1",
"squizlabs/php_codesniffer": "^3.7"
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0"
},
"autoload": {
"psr-4": {
Expand Down
204 changes: 203 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading