Skip to content

Update README to reflect usage of enum and InteractsWithEnum trait #3

Update README to reflect usage of enum and InteractsWithEnum trait

Update README to reflect usage of enum and InteractsWithEnum trait #3

Workflow file for this run

name: PHP Unit Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4' # Change to your required PHP version
- name: Install dependencies
run: composer install
- name: Run tests
run: vendor/bin/phpunit tests