Skip to content

build(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #136

build(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0

build(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #136

Workflow file for this run

name: Test Coverage
on: [workflow_dispatch, push, pull_request]
env:
DB_ENDPOINT: 'tcp://127.0.0.1:8529'
jobs:
run:
runs-on: ubuntu-latest
name: Test coverage
services:
arangodb:
image: arangodb:latest
ports:
- 8529:8529
env:
ARANGO_NO_AUTH: 1
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, intl
ini-values: post_max_size=256M, short_open_tag=On
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Test coverage
run: |
vendor/bin/phpunit --coverage-clover clover.xml --whitelist src
echo "Upload results to Scrutinizer-ci"
vendor/bin/ocular code-coverage:upload --format=php-clover clover.xml