From 7769740d33d1fa6713d59d8da945209dc52df38f Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Thu, 19 Dec 2024 13:21:11 -0800 Subject: [PATCH] Install SVN if needed (#481) --- .github/workflows/lint-test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index f376330..cd82645 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -91,6 +91,13 @@ jobs: composer update fi composer install + - name: Install SVN if needed + run: | + if ! command -v svn &> /dev/null; then + echo "SVN is not installed. Installing now..." + sudo apt-get update + sudo apt-get install -y subversion + fi - name: Run PHPUnit run: | if [ ${{ matrix.redis_enabled }} = 'true' ]; then