Skip to content

Commit

Permalink
run on a matrix of PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 2, 2023
1 parent 104e1f9 commit ac20c1e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/phpcompat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on: [push]
jobs:
phpcompat:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [ '8.0', '8.1', '8.2' ]

steps:
- name: Checkout
Expand All @@ -11,5 +14,5 @@ jobs:
- name: Check PHP Compatibility
uses: pantheon-systems/phpcompatibility-action@dev
with:
test-versions: '8.2-'
test-versions: '${{ matrix.php_version }}-'
paths: '${{ github.workspace }}/**/*.php'

0 comments on commit ac20c1e

Please sign in to comment.