Update plugin unit testing with more WordPress versions and Nightly WordPress builds #1
Workflow file for this run
This file contains 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 Test Plugin | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
unit_test_plugin: | |
name: WordPress ${{ matrix.wordpress }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
wordpress: [ '6.5', '6.4', '6.3', '6.2', '6.1' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create Docker Containers | |
env: | |
WP_VERSION: ${{ matrix.wordpress }} | |
working-directory: ./plugins/faustwp | |
run: | | |
docker-compose build \ | |
--build-arg WP_VERSION=${{ matrix.wordpress }} | |
docker-compose up -d | |
- name: Wait for db | |
run: | | |
while ! mysqladmin ping --host=127.0.0.1 --port=33066 --password=$MYSQL_ROOT_PASSWORD --silent; do | |
sleep 1 | |
done | |
- name: Setup testing framework | |
working-directory: ./plugins/faustwp | |
run: docker exec -e COVERAGE=1 $(docker-compose ps -q wordpress) init-testing-environment.sh | |
- name: Install and activate WP GraphQL | |
working-directory: ./plugins/faustwp | |
run: docker exec -e COVERAGE=1 -w /var/www/html/wp-content/plugins/faustwp $(docker-compose ps -q wordpress) wp plugin install wp-graphql --activate --allow-root | |
- name: Install Dependencies | |
working-directory: ./plugins/faustwp | |
run: docker exec -e COVERAGE=1 -w /var/www/html/wp-content/plugins/faustwp $(docker-compose ps -q wordpress) composer install | |
- name: Run unit tests | |
working-directory: ./plugins/faustwp | |
run: docker exec -e COVERAGE=1 -w /var/www/html/wp-content/plugins/faustwp $(docker-compose ps -q wordpress) composer test |