Skip to content

Commit

Permalink
run explicit checks for each php 8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence authored Sep 29, 2023
1 parent 356eac3 commit ff39652
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/phpcompat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Check PHP Compatibility
- name: Check PHP 8.2
uses: pantheon-systems/phpcompatibility-action@v1
with:
test-versions: 8.2-
test-versions: 8.2
paths: '**/*.php'
- name: Check PHP 8.1
uses: pantheon-systems/phpcompatibility-action@v1
with:
test-versions: 8.1
paths: '**/*.php'
- name: Check PHP 8.0 and below
uses: pantheon-systems/phpcompatibility-action@v1
with:
test-versions: 8.0-
paths: '**/*.php'

0 comments on commit ff39652

Please sign in to comment.