Skip to content

Commit 51ffa79

Browse files
committed
[ci] Cache docker images
1 parent e0b66b1 commit 51ffa79

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v2
16+
17+
- run: docker-compose pull
18+
19+
- uses: satackey/[email protected]
20+
continue-on-error: true
1621

1722
- name: Install dependencies
1823
run: make composer-install

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ run-tests: composer-env-file
5757

5858
# 🐳 Docker Compose
5959
.PHONY: start
60-
start: CMD=up -d
60+
start: CMD=up --build -d
6161

6262
.PHONY: stop
6363
stop: CMD=stop

0 commit comments

Comments
 (0)