Skip to content

Commit

Permalink
build(.github) update qa workflow to use php 7.1 min
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Dec 13, 2024
1 parent 791e89f commit 525e4d6
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit 525e4d6

Please sign in to comment.