Skip to content

Commit

Permalink
Install SVN if needed (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler authored Dec 19, 2024
1 parent bd612fb commit 7769740
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@ jobs:
composer update
fi
composer install
- name: Install SVN if needed
run: |
if ! command -v svn &> /dev/null; then
echo "SVN is not installed. Installing now..."
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Run PHPUnit
run: |
if [ ${{ matrix.redis_enabled }} = 'true' ]; then
Expand Down

0 comments on commit 7769740

Please sign in to comment.