From 0d5e381ecee0ff347ce8026b855e003f7a5c98c3 Mon Sep 17 00:00:00 2001 From: Marc Reisner Date: Thu, 6 Jun 2024 18:20:48 +0000 Subject: [PATCH] Ensure SVN is installed before running tests --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 25ff49d4..9d04e1e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,22 @@ jobs: version: ['stable', 'insiders'] steps: + - name: Install SVN + if: startswith(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install subversion + + - name: Install SVN + if: startswith(matrix.os, 'macOS') + run: | + brew update + brew install subversion + + - name: Install SVN + if: startswith(matrix.os, 'windows') + run: choco install tortoisesvn + - name: Clone repository uses: actions/checkout@v1