Skip to content

Commit a5fa242

Browse files
authored
Add Windows SVN installation step in CI workflow
1 parent 3d5c71c commit a5fa242

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,16 @@ jobs:
5151
echo Set up additional folders...
5252
ls
5353
54+
55+
- name: Test subversion on windows
56+
if: ${{ contains(matrix.runs-on, 'windows') }}
57+
shell: pwsh
58+
run: |
59+
choco install svn
60+
echo "C:\Program Files (x86)\Subversion\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
61+
refreshenv
62+
svn --version
63+
5464
- name: Build project and run tests (non Win)
5565
if: ${{ matrix.runs-on != 'windows-latest' }}
5666
run: |

0 commit comments

Comments
 (0)