Skip to content

Define timer param as readonly (#17) #46

Define timer param as readonly (#17)

Define timer param as readonly (#17) #46

Workflow file for this run

name: marvin255_in_memory_cache
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: In memory cache (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php-versions: ['8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Check PHP Version
run: php -v
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run linters
run: composer run-script linter
- name: Run test suite
run: composer run-script test
- name: Run infection testing
run: composer run-script infection