Skip to content

Commit

Permalink
chore: adjust workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mnavarrocarter committed Oct 3, 2022
1 parent 9290fea commit b216f88
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ jobs:
- name: "Install Locked Dependencies"
if: ${{ matrix.dependencies == 'locked' }}
run: "composer install ${{ env.COMPOSER_FLAGS }}"
# We only run code style checker on locked
- name: "Run Code Style Checker"
run: "vendor/bin/php-cs-fixer fix --dry-run -v"
continue-on-error: ${{ matrix.dependencies == 'highest' }}
if: ${{ matrix.dependencies == 'locked' }}
# We only run static analysis on locked
- name: "Run Static Analysis"
continue-on-error: ${{ matrix.dependencies == 'highest' }}
if: ${{ matrix.dependencies == 'locked' }}
run: "vendor/bin/psalm --shepherd --stats"
- name: "Run Test Suite"
continue-on-error: ${{ matrix.dependencies == 'highest' }}
run: "vendor/bin/phpunit"

0 comments on commit b216f88

Please sign in to comment.