Skip to content

Commit

Permalink
Ensure SVN is installed before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FractalBoy committed Jun 6, 2024
1 parent 8f85a13 commit 0d5e381
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0d5e381

Please sign in to comment.