This is a working example of using a github action workflow to test a Wordpress plugin.
It's using the wordpress phpunit test suite.
This example does the following things:
(back to top)
This project was built with the following frameworks, technologies and software.
(back to top)
This file is commented and explains each part of it. Use it in your /.github/workflows/main.yml
file within your repository.
This file contains a little bit of customised code to pull in a second dependent plugin to test the original plugin.
My scenario was that I'm using the ACF plugin on the admin pages and needed to pull it in to test my plugin.
The slight problem was that on my server, the folder structure will be:
wp-content/
plugins/
advanced-custom-fields/
my-cool-plugin/
But within the Github action container, the ACF plugin is being pulled into the same directory as the current repo, like this:
wp-content/
plugins/
my-cool-plugin/
advanced-custom-fields/
So the bootstrap.php file will check for the difference and load the approriate one, like this:
$path = '';
if (!is_dir(dirname(dirname(__FILE__)) . '/second-plugin-to-add'))
{
$path = '../';
}
require dirname(dirname(__FILE__)) . '/'.$path.'second-plugin-to-add/my_second_plugin.php'; // ACF
Now it will run by pulling in ACF from the right location.
(back to top)
Github Actions.
None.
None.
(back to top)
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue. Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)(back to top)
Distributed under the MIT License.
MIT License
Copyright (c) 2022 Andy Pearson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
(back to top)
Author Link: https://github.com/IORoot
(back to top)