Skip to content

Commit

Permalink
Top of workflow edits
Browse files Browse the repository at this point in the history
Trying to get nominatim-docker-test.yml to run in GH actions with small syntax changes. Also changing the repo from which docker builds to current directory.
  • Loading branch information
nataliejschultz committed Aug 14, 2023
1 parent 067158c commit b7e77fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nominatim-docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
- uses: actions/checkout@v2
uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Workflow test
run: echo Smoke test

- name: Test nominatim
run: docker-compose -f ../../emission/integrationTests/docker-compose.yml up --exit-code-from web-server
run: docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server
3 changes: 2 additions & 1 deletion emission/integrationTests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: "3"
services:
web-server:
build: integrationTests
build:
context: .
depends_on:
- db
- nominatim
Expand Down

0 comments on commit b7e77fb

Please sign in to comment.