Skip to content

Rename Cache to CacheAdapter #76

Rename Cache to CacheAdapter

Rename Cache to CacheAdapter #76

Workflow file for this run

name: PHPUnit
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
memcached:
image: memcached:1.6.5
ports:
- 11211:11211
steps:
- uses: actions/checkout@v3
- name: Setup PHP with fail-fast
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: apcu, memcached
ini-values: |
apc.enable_cli=1
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
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: Install PKL
run: ./phikl install
- name: PHPCS Fixer
run: composer run-script cs
- name: PHPStan
run: composer run-script stan
- name: Run test suite
run: composer run-script test