Skip to content

Merge pull request #15 from SimplyEdit/ci/php-8.3 #35

Merge pull request #15 from SimplyEdit/ci/php-8.3

Merge pull request #15 from SimplyEdit/ci/php-8.3 #35

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 }}"