There was an error while loading. Please reload this page.
1 parent 1831a6a commit 26382feCopy full SHA for 26382fe
1 file changed
.github/workflows/tests.yml
@@ -13,13 +13,23 @@ jobs:
13
container:
14
image: codeccoop/wp-test
15
steps:
16
- - name: Install WP Test Suite
17
- run: |
18
- nohup docker-entrypoint.sh mariadb 2>&1 >/dev/null &
19
- composer -q install
20
- sleep 10
21
- chmod a+x bin/*
22
- bin/install-wp-tests.sh
23
- bin/download-test-deps.sh
+ - name: Start MariaDB
+ run: nohup docker-entrypoint.sh mariadb 2>&1 >/dev/null &
+
+ - name: Composer install
+ run: composer -q install
+ - name: Wait for MariaDB
+ run: sleep 5
24
25
+ - name: Executable mode
26
+ run: chmod a+x bin/*
27
28
+ - name: Install tests suite
29
+ run: bin/install-wp-tests.sh
30
31
+ - name: Download deps
32
+ run: bin/download-test-deps.sh
33
34
- name: Unit testing
35
run: vendor/bin/phpunit -c phpunit.xml.dist
0 commit comments