Skip to content

V3 without dedicated payloads and queries #2361

V3 without dedicated payloads and queries

V3 without dedicated payloads and queries #2361

Workflow file for this run

name: tests
on:
push:
paths:
- "**.php"
- ".github/workflows/tests.yml"
- "phpunit.xml.dist"
- "composer.json"
- "composer.lock"
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
name: PHP - ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress
- name: List Installed Dependencies
run: composer show -D
- name: Execute tests
run: vendor/bin/paratest --verbose