Skip to content

v2.4.1

v2.4.1 #24

Workflow file for this run

name: build
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [ '7.3', '7.4', '8.1' ]
name: PHP ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Setup PHP/composer
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php }}
version: 2
- name: Run tests
run: ./vendor/phpunit/phpunit/phpunit --stderr