Skip to content

Removed now redundant logic check in the getAttribute method. #9

Removed now redundant logic check in the getAttribute method.

Removed now redundant logic check in the getAttribute method. #9

Workflow file for this run

name: Test
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
php: ['8.1', '8.2']
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Install PHP dependencies
run: composer update --prefer-stable --no-interaction --no-progress
- name: Unit Tests
run: composer test