From 01b95242d717a2213194d1080156ce9fa07ae1ff Mon Sep 17 00:00:00 2001 From: Jacob Ransom Date: Fri, 31 Oct 2025 10:55:52 +1300 Subject: [PATCH] PG-4656 test with matomo5_[max|min]_php [ignore_release] --- .github/workflows/matomo-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/matomo-tests.yml b/.github/workflows/matomo-tests.yml index bb1cb6d4..cae01543 100644 --- a/.github/workflows/matomo-tests.yml +++ b/.github/workflows/matomo-tests.yml @@ -1,7 +1,7 @@ # Action for running tests # This file has been automatically created. # To recreate it you can run this command -# ./console generate:test-action --plugin="DeviceDetectorCache" --php-versions="7.2,8.4" --schedule-cron="15 3 * * 6" +# ./console generate:test-action --plugin="DeviceDetectorCache" --php-versions="matomo5_min_php,matomo5_max_php" --schedule-cron="15 3 * * 6" name: Plugin DeviceDetectorCache Tests @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.2', '8.4' ] + php: [ 'matomo5_min_php', 'matomo5_max_php' ] target: ['minimum_required_matomo', 'maximum_supported_matomo'] steps: - uses: actions/checkout@v3 @@ -54,4 +54,4 @@ jobs: test-type: 'PluginTests' matomo-test-branch: ${{ matrix.target }} artifacts-pass: ${{ secrets.ARTIFACTS_PASS }} - upload-artifacts: ${{ matrix.php == '7.2' && matrix.target == 'maximum_supported_matomo' }} + upload-artifacts: ${{ matrix.php == 'matomo5_min_php' && matrix.target == 'maximum_supported_matomo' }}