Skip to content

Bump phpunit/phpunit from 9.6.7 to 9.6.20 #67

Bump phpunit/phpunit from 9.6.7 to 9.6.20

Bump phpunit/phpunit from 9.6.7 to 9.6.20 #67

Workflow file for this run

name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Test
run: composer run-script test