We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51a453 commit 7f63c2dCopy full SHA for 7f63c2d
bin/test-releases
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+set -euo pipefail
3
+
4
+# Test releases against the oldest and newest supported PHP versions
5
+for php in php84 php81; do
6
+ for pluginPkg in plugin pluginWpOrg; do
7
+ echo "Testing $pluginPkg with $php"
8
+ PHP_PACKAGE="$php" STATIC_DEPLOY_PACKAGE="$pluginPkg" nix flake check --impure ./dev
9
+ done
10
+done
0 commit comments