Skip to content

Commit 35a05b7

Browse files
hideackclaude
andcommitted
Fix CI: Install subversion for WordPress test setup
The CI was failing because the bin/install-wp-tests.sh script requires svn command to checkout WordPress test files, but subversion is not installed by default in GitHub Actions Ubuntu environment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a2a5531 commit 35a05b7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/php.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@ jobs:
5252

5353
- run: composer install
5454

55+
- name: Install subversion
56+
run: sudo apt-get update && sudo apt-get install -y subversion
57+
5558
- run: bin/install-wp-tests.sh test root root-password 127.0.0.1:${{ job.services.mysql.ports['3306'] }}
5659
- run: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)