Skip to content

fix tests psr-4 to end with namespace separator #2

fix tests psr-4 to end with namespace separator

fix tests psr-4 to end with namespace separator #2

Workflow file for this run

name: php-ci
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Run PHPUnit tests
run: vendor/bin/phpunit tests
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Run PHPStan static analysis
run: vendor/bin/phpstan analyse --level=max --no-progress