Skip to content

feat: added setActive And setInactive function to CanBeInactive Trait #11

feat: added setActive And setInactive function to CanBeInactive Trait

feat: added setActive And setInactive function to CanBeInactive Trait #11

Workflow file for this run

name: Run Test for Pull Request
on:
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['8.0']
name: PHP ${{ matrix.php }}
steps:
- name: Checkout Latest Codebase
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Execute tests
run: vendor/bin/phpunit --verbose