Skip to content

Merge pull request #31 from nick322/feature/add-cache #66

Merge pull request #31 from nick322/feature/add-cache

Merge pull request #31 from nick322/feature/add-cache #66

Workflow file for this run

name: tests
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
jobs:
linux_tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
stability: [prefer-stable]
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}-composer
restore-keys: |
${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}--composer
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: openssl, hash
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install Composer dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit