Skip to content

Change deploy / publish script to *not* need a separate branch. #379

Change deploy / publish script to *not* need a separate branch.

Change deploy / publish script to *not* need a separate branch. #379

---
name: PHP Version Compatibility
on:
- push
- pull_request
# Allow manually triggering the workflow.
- workflow_dispatch
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
php-codesniffer:
strategy:
matrix:
php: [ '8.1' ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: pipeline-components/php-codesniffer@master
with:
options: >-
-s
--ignore='*vendor/*'
--standard=PHPCompatibility
--extensions=php
--runtime-set testVersion ${{ matrix.php }}