From 18fa345d877972760bc73ed6ded61699e8134ea6 Mon Sep 17 00:00:00 2001 From: Leif Singer Date: Mon, 25 Sep 2023 11:45:41 +0200 Subject: [PATCH 1/2] update .gitignore --- .gitignore | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 605628167..6716d1cc5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,25 @@ -phpunit.xml -vendor +# Operating System files +.DS_Store +Thumbs.db + +# IDE files .idea -node_modules +.vscode/* +project.xml +project.properties +.project +.settings* +*.sublime-project +*.sublime-workspace +.sublimelinterrc + +# Project files +node_modules/ +vendor/ + +#PHP Unit +.phpunit.result.cache +phpunit.xml + +# Build files action-scheduler.zip From f8030c99c844dd37bcf94b2b7c0568362935dd9e Mon Sep 17 00:00:00 2001 From: Leif Singer Date: Mon, 25 Sep 2023 11:46:44 +0200 Subject: [PATCH 2/2] exclude PHP 5.6 / WordPress latest from unit test matrix --- .github/workflows/pr-unit-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pr-unit-tests.yml b/.github/workflows/pr-unit-tests.yml index fc699449b..d377efc00 100644 --- a/.github/workflows/pr-unit-tests.yml +++ b/.github/workflows/pr-unit-tests.yml @@ -25,6 +25,9 @@ jobs: wp: 5.4 - php: 8.0 wp: 5.5 + # WordPress 6.3+ requires PHP 7.0+ + - php: 5.6 + wp: latest services: database: image: mysql:5.6