Skip to content

Telemetry for official plugins #15

Telemetry for official plugins

Telemetry for official plugins #15

Workflow file for this run

name: Build
on:
push: ~
pull_request: ~
workflow_dispatch: ~
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["8.2", "8.3", "8.4", "8.5"]
symfony: ["^7.1"]
database: ["mysql:8.4"]
name: "PHPUnit (PHP ${{ matrix.php }})"
steps:
- uses: actions/checkout@v4
- name: Build test application
uses: SyliusLabs/BuildTestAppAction@v2
with:
build_type: "plugin"
php_version: "${{ matrix.php }}"
symfony_version: "${{ matrix.symfony }}"
database: "${{ matrix.database }}"
- name: Run PHPUnit
env:
SYLIUS_TEST_APP_BUNDLES_PATH: "tests/TestApplication/config/bundles.php"
run: vendor/bin/phpunit