Skip to content

Add PHP 8.3 to php-compat.yml check #34

Add PHP 8.3 to php-compat.yml check

Add PHP 8.3 to php-compat.yml check #34

Workflow file for this run

---
name: PHP Compatibility Check
# yamllint disable-line rule:truthy
on:
- push
- pull_request
jobs:
php-compat:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
steps:
- uses: actions/checkout@v4
- uses: pipeline-components/php-codesniffer@master
with:
options: "-s --extensions=php --standard=PHPCompatibility --runtime-set testVersion ${{ matrix.version }}"