Adding plugin-check-action for github actions #5
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: Testing | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| plugin-check: | |
| name: Plugin check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v4 | |
| - name: Run plugin check | |
| uses: wordpress/plugin-check-action@v1 | |
| phpunit: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: ["8.2", "8.0", "7.4"] | |
| services: | |
| database: | |
| image: mysql:latest | |
| env: | |
| MYSQL_DATABASE: wordpress_tests | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - 3306:3306 | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v4 | |
| - name: Install SVN | |
| run: sudo apt-get update && sudo apt-get install -y subversion | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: phpunit-polyfills:1.1 | |
| - name: Setup tests | |
| run: bash bin/install-wp-tests.sh wordpress_tests root root 127.0.0.1 latest true | |
| - name: Run tests | |
| run: phpunit |