Skip to content

Abstract DisableOptions methods #35

Abstract DisableOptions methods

Abstract DisableOptions methods #35

Workflow file for this run

name: CI
on:
push:
paths:
- "src/**"
- "tests/**"
- ".github/workflows/**"
- composer.json
- composer.lock
- phpunit.xml
pull_request:
paths:
- "src/**"
- "tests/**"
- ".github/workflows/**"
- composer.json
- composer.lock
- phpunit.xml
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
- 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: Run test suite
run: composer test