From bb88e994beddb7062ead3e07d82adb50711cea75 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Tue, 17 Sep 2024 11:43:10 -0700 Subject: [PATCH] get svnadmin installed on macOS runners in CI --- .github/workflows/push.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index c938d64..5b052e2 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -29,7 +29,9 @@ jobs: - run: get-command python ; python --version ; get-command pip ; pip --version if: matrix.os == 'windows-latest' - run: git --version - # macOS doesn't currently have Mercurial installed by default. + # macOS doesn't currently have hg or svnadmin installed by default. + - run: brew install subversion + if: matrix.os == 'macOS-latest' - run: pip install wheel && pip install mercurial if: matrix.os == 'macOS-latest' # Install test dependencies, like flake8.