Skip to content

Commit cf47551

Browse files
committed
Add subversion installation to PHPUnit workflow
Added a step to install subversion in the GitHub Actions PHPUnit workflow. This ensures that subversion is available before installing the WordPress test suite, which may require it.
1 parent 1ce2ad1 commit cf47551

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/phpunit.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
- name: Install dependencies
4444
run: composer install --prefer-dist --no-progress
4545

46+
- name: Install subversion
47+
run: sudo apt-get update && sudo apt-get install -y subversion
48+
4649
- name: Install WordPress test suite
4750
run: |
4851
bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp-version }}

0 commit comments

Comments
 (0)