File tree Expand file tree Collapse file tree 3 files changed +33
-17
lines changed Expand file tree Collapse file tree 3 files changed +33
-17
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ pull_request :
8
+
9
+ jobs :
10
+ test :
11
+ name : Run tests
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v2
16
+
17
+ - name : Build
18
+ run : |
19
+ cp .env.dist .env
20
+ XDEBUG=1 docker-compose build
21
+
22
+ - name : Test
23
+ run : |
24
+ export MYSQL_ROOT_PASSWORD=root
25
+ set -x
26
+ ln -sr docker-compose.dev.yml docker-compose.override.yml
27
+ docker/console php -i
28
+ docker-compose up -d
29
+ curl -f localhost:8080
30
+ docker/console id
31
+ docker/redis-cli info
32
+ docker/console node --version
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker-compose exec redis redis-cli $@
3
+ docker-compose exec -T redis redis-cli $@
You can’t perform that action at this time.
0 commit comments