run-tests #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "run-tests" | |
| on: | |
| push: | |
| # branches: [ "main" ] | |
| pull_request: | |
| # branches: [ "main" ] | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| permissions: | |
| contents: "read" | |
| jobs: | |
| all_tests: | |
| name: "PHP${{ matrix.php }} ${{ matrix.os-title }} ${{ matrix.dependency-prefer-title }}" | |
| runs-on: "${{ matrix.os }}" | |
| permissions: | |
| contents: "read" | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] | |
| php: [ "8.5", "8.4", "8.3", "8.2", "8.1", "8.0" ] | |
| dependency-prefer: [ "prefer-stable", "prefer-lowest" ] | |
| include: | |
| - php: "8.5" | |
| phpunit: "^11.0 | ^12.0" | |
| phpunit-config-file: "phpunit.github-actions.xml.dist" | |
| - php: "8.4" | |
| phpunit: "^11.0 | ^12.0" | |
| phpunit-config-file: "phpunit.github-actions.xml.dist" | |
| - php: "8.3" | |
| phpunit: "^11.0 | ^12.0" | |
| phpunit-config-file: "phpunit.github-actions.xml.dist" | |
| - php: "8.2" | |
| phpunit: "^11.0" | |
| phpunit-config-file: "phpunit.github-actions.xml.dist" | |
| - php: "8.1" | |
| phpunit: "^10.1.0" | |
| phpunit-config-file: "phpunit.github-actions.xml.dist" | |
| - php: "8.0" | |
| phpunit: "^9.3" | |
| phpunit-config-file: "phpunit.github-actions.up-to-9.xml.dist" | |
| - os: "ubuntu-latest" | |
| os-title: "ubuntu" | |
| - os: "macos-latest" | |
| os-title: "macos" | |
| - os: "windows-latest" | |
| os-title: "win" | |
| - dependency-prefer: "prefer-stable" | |
| dependency-prefer-title: "stable" | |
| - dependency-prefer: "prefer-lowest" | |
| dependency-prefer-title: "lowest" | |
| steps: | |
| - name: "Checkout code" | |
| uses: "actions/checkout@v6" | |
| - name: "Setup PHP" | |
| uses: "shivammathur/setup-php@v2" | |
| with: | |
| php-version: "${{ matrix.php }}" | |
| ini-values: "error_reporting=E_ALL" | |
| coverage: "none" | |
| env: | |
| COMPOSER_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| - name: "Validate composer.json and composer.lock" | |
| run: "composer validate --strict" | |
| # find composer's cache directory - so we know which directory to cache in the next step | |
| - name: "Find composer's cache directory" | |
| id: "composer-cache" | |
| shell: "bash" # make sure this step works on Windows - see https://github.com/actions/runner/issues/2224#issuecomment-1289533957 | |
| run: | | |
| echo "composer_cache_dir=$(composer config cache-files-dir)">> "$GITHUB_OUTPUT" | |
| - name: "Compute composer.json hash" | |
| id: "composer-hash" | |
| shell: "bash" # make sure this step works on Windows - bash syntax is used | |
| run: | | |
| # GitHub's hashFiles() tool has regression bug on MacOS - https://github.com/actions/runner-images/issues/13341 | |
| # if replacing, fix the "$" and the "{ {" - the GitHub running picks it up and runs it before the step is run | |
| #COMPOSER_HASH="${ { hashFiles('composer.json') }}" | |
| # Use md5_file() instead | |
| COMPOSER_HASH="$(php -r 'echo md5_file("composer.json");')" | |
| echo "value=$COMPOSER_HASH" >> "$GITHUB_OUTPUT" | |
| - name: "Cache composer's cache directory" | |
| uses: "actions/cache@v4" | |
| with: | |
| path: "${{ steps.composer-cache.outputs.composer_cache_dir }}" | |
| # key: "[${{ matrix.os }}][php-${{ matrix.php }}][${{ matrix.dependency-prefer }}][composer.json-${{ hashFiles('composer.json') }}]" | |
| key: "[${{ matrix.os }}][php-${{ matrix.php }}][${{ matrix.dependency-prefer }}][composer.json-${{ steps.composer-hash.outputs.value }}]" | |
| - name: "Install dependencies" | |
| uses: "nick-fields/retry@v3" | |
| with: | |
| timeout_minutes: 5 | |
| max_attempts: 5 | |
| shell: "bash" # make sure "^" characters are interpreted properly on Windows (e.g. in "^5.0") | |
| command: | | |
| composer remove "infection/infection" --dev --no-interaction --no-update | |
| composer remove "phpstan/phpstan" --dev --no-interaction --no-update | |
| composer remove "phpstan/phpstan-strict-rules" --dev --no-interaction --no-update | |
| composer remove "squizlabs/php_codesniffer" --dev --no-interaction --no-update | |
| composer require "phpunit/phpunit:${{ matrix.phpunit }}" --dev --no-interaction --no-update | |
| composer update --${{ matrix.dependency-prefer }} --prefer-dist --no-interaction --optimize-autoloader --no-progress | |
| - name: "Execute tests" | |
| run: vendor/bin/phpunit --configuration=${{ matrix.phpunit-config-file }} --no-coverage --stop-on-error --stop-on-failure |