Skip to content

Feature/builder test2 (#713) #1277

Feature/builder test2 (#713)

Feature/builder test2 (#713) #1277

name: Codacy coverage
on:
push:
branches:
- main
jobs:
coverage:
env:
DB_DATABASE: testing
DB_ROOT_PASSWORD: secretroot
DB_HOST: 127.0.0.1
APP_KEY: base64:1NxfrNErQ0vo1ZnPcLeVhnE7tOZdKlKiFORzPA92krM=
runs-on: ubuntu-latest
name: Checkout
services:
mysql:
image: mysql:latest
env:
MYSQL_DATABASE: testing
MYSQL_HOST: 127.0.0.1
MYSQL_ROOT_PASSWORD: secretroot
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 --name=mysql
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: List Installed Dependencies
run: composer show -D
- name: Execute tests
run: vendor/bin/pest --coverage-clover clover.xml
env:
DB_PORT: ${{ job.services.mysql.ports[3306] }}
DB_HOST: 127.0.0.1
DB_USER: root
DB_PASSWORD: secretroot
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1.3.0
with:
api-token: ${{ secrets.CODACY }}
coverage-reports: clover.xml