Skip to content

Update PHP versions in PHPUnit workflow to include 8.4 #152

Update PHP versions in PHPUnit workflow to include 8.4

Update PHP versions in PHPUnit workflow to include 8.4 #152

Workflow file for this run

name: PSR12
on: [push, pull_request]
jobs:
phpcs:
name: PHP Code sniffer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Update composer.lock
run: composer update
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Detecting PHP Code Standards Violations
run: composer run-script phpcs