Skip to content

Bump phpunit/phpunit from 9.6.8 to 9.6.9 #437

Bump phpunit/phpunit from 9.6.8 to 9.6.9

Bump phpunit/phpunit from 9.6.8 to 9.6.9 #437

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
php-version:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Pull
run: docker-compose pull --quiet
- name: Build
run: docker-compose build --build-arg PHPVERSION=${{ matrix.php-version }}
- name: Test
run: docker-compose run -e "PHP_CS_FIXER_IGNORE_ENV=True" lib composer ci
- name: Upload coverage
uses: codecov/codecov-action@v3
if: success()
with:
file: ./coverage/clover.xml