Skip to content

Commit

Permalink
[ci] Run phpcs in GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Tubach committed Aug 14, 2024
1 parent 153f0f8 commit 63811fa
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: PHP_CodeSniffer

on:
pull_request: ~

jobs:
phpcs:
runs-on: ubuntu-latest
name: PHP_CodeSniffer

steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
tools: cs2pr
env:
fail-fast: true

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

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

- name: Install dependencies
run: composer update --no-progress --prefer-dist

- name: Run PHP_CodeSniffer
run: composer phpcs -- -q --report=checkstyle | cs2pr
10 changes: 1 addition & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,7 @@
},
{
"type": "vcs",
"url": "git@github.com:systopia/drupal-json_forms.git"
},
{
"type": "vcs",
"url": "https://github.com/systopia/opis-json-schema-ext"
},
{
"type": "vcs",
"url": "https://github.com/systopia/expression-language-ext"
"url": "https://github.com/systopia/drupal-json_forms.git"
},
{
"type": "composer",
Expand Down

0 comments on commit 63811fa

Please sign in to comment.