Skip to content

Updated the Slug value object to be castable. #55

Updated the Slug value object to be castable.

Updated the Slug value object to be castable. #55

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