Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Update dependency phpunit/phpunit to v11 #56

Update dependency phpunit/phpunit to v11

Update dependency phpunit/phpunit to v11 #56

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- 'feature/**'
push:
branches:
- main
jobs:
test-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
- run: composer install
- run: composer lint
- run: composer test:coverage
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./cobertura.xml
fail_ci_if_error: true