Skip to content

build(deps-dev): bump phpunit/phpunit from 9.6.7 to 9.6.10 #341

build(deps-dev): bump phpunit/phpunit from 9.6.7 to 9.6.10

build(deps-dev): bump phpunit/phpunit from 9.6.7 to 9.6.10 #341

Workflow file for this run

name: PHP Composer
on:
push:
branches: master
pull_request:
branches: master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0']
name: Build PHP version ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: composer test