Skip to content

Commit 0d5e381

Browse files
committed
Ensure SVN is installed before running tests
1 parent 8f85a13 commit 0d5e381

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

+16
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@ jobs:
2121
version: ['stable', 'insiders']
2222

2323
steps:
24+
- name: Install SVN
25+
if: startswith(matrix.os, 'ubuntu')
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install subversion
29+
30+
- name: Install SVN
31+
if: startswith(matrix.os, 'macOS')
32+
run: |
33+
brew update
34+
brew install subversion
35+
36+
- name: Install SVN
37+
if: startswith(matrix.os, 'windows')
38+
run: choco install tortoisesvn
39+
2440
- name: Clone repository
2541
uses: actions/checkout@v1
2642

0 commit comments

Comments
 (0)