Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork206
chore(deps): updateminimum-stability tostable#177
This file contains hidden or 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:Tests | |
| on:['push', 'pull_request'] | |
| jobs: | |
| ci: | |
| runs-on:${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os:[ubuntu-latest, macos-latest, windows-latest] | |
| php:['8.2', '8.3', '8.4'] | |
| dependency-version:[prefer-lowest, prefer-stable] | |
| name:PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} | |
| steps: | |
| -name:Set git to use LF | |
| run:| | |
| git config --global core.autocrlffalse | |
| git config --global core.eol lf | |
| -name:Checkout | |
| uses:actions/checkout@v4 | |
| -name:Setup PHP | |
| uses:shivammathur/setup-php@v2 | |
| with: | |
| php-version:${{ matrix.php }} | |
| extensions:fileinfo | |
| coverage:pcov | |
| -name:Setup Problem Matches | |
| run:| | |
| echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
| echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| -name:Install Composer dependencies | |
| run:composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist --ansi | |
| -name:Style Testing | |
| run:vendor/bin/pint --test --ansi | |
| -name:Unit Testing | |
| run:vendor/bin/pest |