From 5f9c34af0eff49434192690227fea45b665fbeb9 Mon Sep 17 00:00:00 2001 From: Marcus Quinn Date: Thu, 13 Mar 2025 17:30:10 +0000 Subject: [PATCH] Update .gitignore and add .woodpecker.yml --- .gitignore | 4 +++- .woodpecker.yml | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .woodpecker.yml diff --git a/.gitignore b/.gitignore index bc7d29a..21ee17a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,8 @@ .LSOverride # Icon must end with two \r -Icon +Icon + # Thumbnails ._* @@ -52,3 +53,4 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk +.aider* diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..60844ed --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,9 @@ +pipeline: + test: + image: php:7.4-cli + commands: + - apt-get update && apt-get install -y git + - php -l wpa-superstar-plugin.php # Syntax check + - php -l admin/settings.php + - php -l includes/speed-functions.php + - echo "Basic linting passed" \ No newline at end of file