Merge pull request #1 from netlogix/automated-apply-coding-standards #5
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
name: Apply Coding Standard | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
php-coding-standard: | |
name: 'Apply PHP Coding Standard' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Code' | |
uses: actions/checkout@v4 | |
- name: 'Setup PHP' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: composer | |
- name: 'Get Composer Cache Directory' | |
id: composer-cache | |
shell: bash | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: 'Cache Composer Dependencies' | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: composer | |
- name: 'Install Composer Dependencies' | |
shell: bash | |
run: composer install --no-interaction | |
# - name: 'Rector PHP Code' | |
# shell: bash | |
# run: composer rector-fix | |
- name: 'Lint PHP Code' | |
shell: bash | |
run: composer lint-fix | |
- name: 'Run PHPUnit unit tests' | |
shell: bash | |
run: composer test-unit | |
- name: 'Run PHPUnit functional tests' | |
shell: bash | |
run: composer test-functional | |
- name: 'Create pull-request' | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "[automated] Apply Coding Standard" | |
base: 'main' | |
branch: 'automated-apply-coding-standards' | |
title: '[automated] Apply Coding Standard' | |
labels: 'automated' | |
delete-branch: true |