Bump actions/checkout from 4 to 6 #222
Workflow file for this run
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: Unit Testing | |
| on: | |
| push: | |
| branches: | |
| - trunk | |
| paths: | |
| - '**.php' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| - 'phpunit.xml.dist' | |
| - '.github/workflows/phpunit.yml' | |
| pull_request: | |
| paths: | |
| - '**.php' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| - 'phpunit.xml.dist' | |
| - '.github/workflows/phpunit.yml' | |
| jobs: | |
| phpunit: | |
| runs-on: ubuntu-latest | |
| services: | |
| mysql: | |
| image: mariadb:10.4 | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - 3306:3306 | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10 | |
| strategy: | |
| matrix: | |
| php-versions: ['7.4', '8.0', '8.2', '8.3'] | |
| wp-version: ['latest'] | |
| include: | |
| - php-versions: '7.4' | |
| wp-version: '6.2' | |
| - php-versions: '8.3' | |
| wp-version: 'trunk' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install subversion | |
| run: sudo apt-get update && sudo apt-get install -y subversion | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| coverage: none | |
| tools: composer, phpunit-polyfills | |
| extensions: mysql | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Setup Test Environment | |
| run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp-version }} | |
| - name: Run PHPUnit | |
| run: ./vendor/bin/phpunit --colors=always | |
| env: | |
| PHP_VERSION: ${{ matrix.php-versions }} |