Skip to content

Commit

Permalink
allow style check to fail if experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Dec 12, 2022
1 parent 71a4510 commit acc122b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }}
Expand All @@ -47,6 +47,7 @@ jobs:
run: composer install --prefer-dist --no-progress --no-suggest

- name: Check Style
continue-on-error: ${{ matrix.experimental }}
run: vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --stop-on-violation --using-cache=no -vvv

- name: Check Dependencies
Expand Down

0 comments on commit acc122b

Please sign in to comment.