Skip to content

Merge pull request #6 from jtl-software/EA-5554 #8

Merge pull request #6 from jtl-software/EA-5554

Merge pull request #6 from jtl-software/EA-5554 #8

Workflow file for this run

name: UnitTesting
on: [push]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "8.2"
steps:
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: xdebug3
- name: "Checkout"
uses: actions/checkout@v2
- name: "Install dependencies"
run: composer install --prefer-dist --no-progress
- name: "Check Code Style"
run: composer phpcs-dry
env:
PHP_CS_FIXER_IGNORE_ENV: 1
- name: "Run PHP Static Analysis Tool"
run: vendor/bin/phpstan
- name: "Run test suite"
run: vendor/bin/phpunit