Skip to content

Commit

Permalink
refactor: Shuffle command
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jan 31, 2024
1 parent 0c34c1f commit 64cab20
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
matrix:
actions:
- name: 'PHPStan'
run: phpstan
run: composer phpstan
- name: 'Coding Standards'
run: fix-cs
run: composer fix-cs
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
Expand All @@ -27,8 +27,9 @@ jobs:
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: php-actions/composer@v6
- name: Composer action
uses: php-actions/composer@v6
with:
php_version: "8.2"
php_extensions: ctype curl dom iconv imagick intl json mbstring openssl pcre pdo reflection spl zip
command: ${{ matrix.actions.run }}
run: ${{ matrix.actions.run }}

0 comments on commit 64cab20

Please sign in to comment.