Skip to content

Switch to ubuntu-latest for tests #11

Switch to ubuntu-latest for tests

Switch to ubuntu-latest for tests #11

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php-versions }}-
- name: Install dependencies
run: composer install -o --no-progress
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{secrets.CODE_CLIMATE_ID}}
with:
coverageCommand: vendor/bin/phpunit --coverage-clover build/logs/clover.xml
coverageLocations: |
${{github.workspace}}/build/logs/clover.xml:clover