Skip to content

Form filter - Date range: add a day to the max values when requesting… #80

Form filter - Date range: add a day to the max values when requesting…

Form filter - Date range: add a day to the max values when requesting… #80

Workflow file for this run

name: "🎳 Unit tests"
on:
push:
branches:
- master
- release_3_*
pull_request:
branches:
- master
- release_3_*
jobs:
tests:
name: "php-unit"
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [
'7.4',
'8.0',
'8.1',
'8.2',
]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: php-cs-fixer, phpunit
- name: Running tests
run: make tests