Skip to content

Commit

Permalink
Fixing workflow
Browse files Browse the repository at this point in the history
docker-compose.yml: Adding healthcheck back in because build failed when I removed it.

nominatim-docker-test.yml: changing workflow to trigger only on push to nominatim, since I'm hoping to only run this test on my test branch instead of the main branch.
  • Loading branch information
nataliejschultz committed Sep 18, 2023
1 parent dbdd359 commit 4b1608d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nominatim-docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: nominatim-docker-test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
branches:
- master
# pull_request:
# branches:
# - master
push:
branches:
-nominatim
Expand Down
12 changes: 6 additions & 6 deletions emission/integrationTests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ services:
- IMPORT_WIKIPEDIA=false
ports:
- "8080:8080"
#healthcheck currently commented out, since it isn't necessary and keeps going the entire time the container is running.
# healthcheck:
# test: ["CMD", "curl", "-v", "http://localhost:8080"]
# interval: 1m
# timeout: 15s
# retries: 3
# healthcheck currently commented out, since it isn't necessary and keeps going the entire time the container is running.
healthcheck:
test: ["CMD", "curl", "-v", "http://localhost:8080"]
interval: 1m
timeout: 15s
retries: 3
deploy:
replicas: 1
restart_policy:
Expand Down

0 comments on commit 4b1608d

Please sign in to comment.