Skip to content

Increase test coverage of SW versions #177

Increase test coverage of SW versions

Increase test coverage of SW versions #177

Workflow file for this run

name: Lint PHP
on:
push:
branches:
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]
name: Code linting (PHP ${{ matrix.php-versions }})
steps:
- uses: actions/checkout@v2
- name: Setup PHP with Composer 2
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom
coverage: xdebug
tools: composer:v2
- name: Validate dependencies
run: composer validate
- name: Install dependencies
run: composer install
- name: Run Lint
run: composer lint