Skip to content

Use imports instead of global namespace operator #104

Use imports instead of global namespace operator

Use imports instead of global namespace operator #104

Workflow file for this run

name: CI
on: [push]
jobs:
phpunit:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, sodium
ini-values: error_reporting=-1, display_errors=On
coverage: none
- name: Install Composer dependencies
uses: "ramsey/composer-install@v1"
- name: PHPUnit tests
run: vendor/bin/phpunit