Skip to content

fix: no-cache reset fix (private, public, noStore, mustRevalidate) #2 #15

fix: no-cache reset fix (private, public, noStore, mustRevalidate) #2

fix: no-cache reset fix (private, public, noStore, mustRevalidate) #2 #15

Workflow file for this run

name: Run PHPUnit Tests
on:
push:
paths-ignore:
- 'README.md'
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ 8.2, 8.3, 8.4 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Run PHPUnit tests/*
run: vendor/bin/phpunit tests/*