Skip to content

Commit

Permalink
Refactored workflow to run without custom actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaene committed Oct 12, 2023
1 parent cd9cee7 commit ee27b16
Showing 1 changed file with 28 additions and 11 deletions.
39 changes: 28 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,45 @@ jobs:

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

- name: Set up PHP
uses: shivammathur/[email protected]
with:
php-version: '8.2'
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/[email protected]
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
run: ./vendor/bin/phpcs -q --report=checkstyle | cs2pr

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

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

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

- name: Bring up containers
run: docker-compose up -d
Expand Down

0 comments on commit ee27b16

Please sign in to comment.