add feature compare enum #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pest Tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
pest_tests: | |
runs-on: ${{ matrix.operating-systems }} | |
strategy: | |
matrix: | |
operating-systems: [ubuntu-latest] | |
php-versions: ['8.1', '8.2', '8.3'] | |
name: PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-systems }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
ini-values: error_reporting=E_ALL | |
tools: composer:v2 | |
- name: Running Composer Install | |
run: composer install | |
- name: Running Pest Test | |
run: composer test |