Update composer.json #137
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: Code Climate | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "!*" # Do not execute on tags | |
paths: | |
- src/* | |
- test/* | |
- "*.php" | |
- "*.json" | |
- ".github/workflows/code-climate.yml" | |
pull_request: | |
paths: | |
- "!*.MD" | |
jobs: | |
test: | |
env: | |
DB_CONNECTION: sqlite | |
SESSION_DRIVER: array | |
DB_DATABASE: ":memory:" | |
APP_KEY: base64:1NxfrNErQ0vo1ZnPcLeVhnE7tOZdKlKiFORzPA92krM= | |
runs-on: ubuntu-latest | |
name: Checkout | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.2" | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: pcov | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Remove PHP-PSR Extension | |
run: | | |
sudo apt remove php8.2-psr | |
- name: Install dependencies | |
run: | | |
composer update | |
- name: Coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: 49c2958be5b2f72fa7202fd4b91b4668cbfefa9aa51e949b8a0bde13bc893ae5 | |
with: | |
coverageCommand: vendor/bin/pest --coverage-clover clover.xml |