We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4b81c commit 72d9aedCopy full SHA for 72d9aed
.github/docker/docker-compose.yml
@@ -36,12 +36,6 @@ services:
36
- ./wordpress:/var/www/html
37
- ./plugins:/var/www/html/wp-content/plugins
38
39
- svn:
40
- image: subversion
41
- volumes:
42
- - ./svn:/var/lib/svn
43
- command: svnserve -d -r /var/lib/svn
44
-
45
volumes:
46
db_data: {}
47
wp_content: {}
.github/workflows/ci.yml
@@ -36,6 +36,10 @@ jobs:
run: |
CONTAINER_ID=$(docker-compose -f .github/docker/docker-compose.yml ps -q wordpress)
docker logs "$CONTAINER_ID"
+
+ - name: Install svn
+ run: |
+ apt-get update && apt-get install -y subversion && rm -rf /var/lib/apt/lists/*
# Wait for WordPress to be fully up before running commands
- name: Wait for WordPress to be available
0 commit comments