From 3206ff013f6b16eacbb76ee80dbe1b184d70a9d9 Mon Sep 17 00:00:00 2001 From: Colin Stewart <79332690+costdev@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:21:35 +0000 Subject: [PATCH] Workflows: Install SVN before running tests. (#254) Subversion was removed from GitHub Actions' default packages for Ubuntu 24. The tests installer uses Subversion internally. This change installs Subversion. --- .github/workflows/phpunit-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/phpunit-tests.yml b/.github/workflows/phpunit-tests.yml index 9aabbb7..d433dd4 100644 --- a/.github/workflows/phpunit-tests.yml +++ b/.github/workflows/phpunit-tests.yml @@ -35,6 +35,9 @@ jobs: php-version: ${{ matrix.php-version }} tools: phpunit-polyfills:1.1 + - name: Install SVN + run: sudo apt install -y subversion + - name: Setup tests run: bash bin/install-wp-tests.sh wordpress_tests root root 127.0.0.1 latest true