Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solve PHP 8.4 deprecation issues #66

Merged
merged 7 commits into from
Dec 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build(.github) update qa workflow to use php 7.1 min
  • Loading branch information
lucatume committed Dec 13, 2024
commit 525e4d6c40421126a64ee52ad8037733e1323da9
16 changes: 8 additions & 8 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,38 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP 5.6
- name: Setup PHP 7.1
uses: shivammathur/setup-php@v2
with:
php-version: 5.6
php-version: 7.1
- name: Install dependencies
uses: "ramsey/composer-install@v2"
- name: Run phpcs
run: make phpcs
phpstan:
name: phpstan on PHP 5.6
name: phpstan on PHP 7.1
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP 5.6
- name: Setup PHP 7.1
uses: shivammathur/setup-php@v2
with:
php-version: 5.6
php-version: 7.1
- name: Install dependencies
uses: "ramsey/composer-install@v2"
- name: Run phpstan
run: make phpstan
phan:
name: phan on PHP 5.6
name: phan on PHP 7.1
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP 5.6
- name: Setup PHP 7.1
uses: shivammathur/setup-php@v2
with:
php-version: 5.6
php-version: 7.1
- name: Install dependencies
uses: "ramsey/composer-install@v2"
- name: Run phan
Expand Down
Loading