Skip to content

Allow wildcard (*) for "any method" definition. #10

Allow wildcard (*) for "any method" definition.

Allow wildcard (*) for "any method" definition. #10

Workflow file for this run

on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
name: "Checks"
permissions:
contents: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- 8.1
- 8.2
- 8.3
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
- name: Install dependencies
uses: php-actions/composer@v6
- name: Run tests
run: vendor/bin/phpunit --testdox