Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
akhx committed Dec 8, 2024
1 parent 8018e49 commit d19d9cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -24,7 +24,7 @@ jobs:
extensions: mbstring

- name: Composer install
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Run code standard fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -23,7 +23,7 @@ jobs:
extensions: mbstring

- name: Composer install
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Run a static analysis with phpstan/phpstan
run: vendor/bin/phpstan analyse
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
php-version:
- 7.3
- 7.4
- 8.0
- 8.1
Expand Down

0 comments on commit d19d9cd

Please sign in to comment.