Skip to content

Commit 9cfe489

Browse files
committed
Don't run forever
1 parent 777ede9 commit 9cfe489

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
# Ignore the failure of a step and avoid terminating the job.
4444
continue-on-error: true
4545

46-
- run: docker-compose up --build
46+
- run: make image
4747

4848
- run: make test

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: bash npm-build npm-install build clean db-migrate db-upgrade redis-cli run shell start stop update test pytest container-build envvar ci cert trust
1+
.PHONY: bash npm-build npm-install build clean db-migrate db-upgrade redis-cli run shell start stop update test pytest image envvar ci cert trust
22

33
bash:
44
docker-compose run --rm web bash
@@ -9,10 +9,10 @@ npm-install:
99
npm-build:
1010
npm run build
1111

12-
container-build:
12+
image:
1313
docker-compose build --pull
1414

15-
build: npm-install npm-build container-build
15+
build: npm-install npm-build image
1616

1717
clean: stop
1818
docker-compose rm -f

0 commit comments

Comments
 (0)