Skip to content

Update google-client.md #66

Update google-client.md

Update google-client.md #66

Workflow file for this run

name: test
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: 8.3
extensions: mbstring, bcmath
coverage: xdebug
- name: Install Composer dependencies
run: composer install --no-interaction --no-progress --optimize-autoloader
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: vendor/bin/phpunit