✨ Stats Section, Color Field, Props-based inline make, added… #55
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' ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2 | |
coverage: xdebug | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: composer-${{ hashFiles('composer.lock') }} | |
- name: Install | |
run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
- name: Test & publish code coverage | |
uses: paambaati/[email protected] | |
with: | |
coverageCommand: composer coverage | |
coverageLocations: ${{github.workspace}}/tests/clover.xml:clover | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |