We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f85a13 commit 0d5e381Copy full SHA for 0d5e381
.github/workflows/main.yml
@@ -21,6 +21,22 @@ jobs:
21
version: ['stable', 'insiders']
22
23
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
31
+ if: startswith(matrix.os, 'macOS')
32
33
+ brew update
34
+ brew install subversion
35
36
37
+ if: startswith(matrix.os, 'windows')
38
+ run: choco install tortoisesvn
39
40
- name: Clone repository
41
uses: actions/checkout@v1
42
0 commit comments