ci: explicitly install subversion
All checks were successful
continuous-integration/drone/push Build is passing

SVN is required both for WP test setup and deployment actions, but no
longer present on default "ubuntu-latest" environments. Add a step to
install it.
This commit is contained in:
2025-01-07 18:34:03 +01:00
parent 0979f070cf
commit e5a76fc18c
4 changed files with 31 additions and 0 deletions

View File

@ -19,6 +19,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:

View File

@ -10,6 +10,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:

View File

@ -11,6 +11,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Setup PHP
uses: shivammathur/setup-php@v2
with: