From 70e7a8ed08e430f2da62cb349b88a4330d9d7466 Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 11 Mar 2020 15:42:40 +0000 Subject: [PATCH] Add a Travis CI build using the minimum WooCommerce requirements The current build matrix is always testing against the latest version of WordPress, but WooCommerce officially supports WordPress 5.0 and newer. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 87d782c61cb..384d1dea6fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,9 @@ matrix: - name: "WooCommerce unit tests using WordPress nightly" php: 7.4 env: WP_VERSION=nightly WP_MULTISITE=0 + - name: "Minimum requirements" + php: 5.6 + env: WP_VERSION=5.0 WP_MULTISITE=0 allow_failures: - php: 7.4 env: WP_VERSION=latest WP_MULTISITE=0 RUN_CODE_COVERAGE=1