Update URL in README.md #676
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker_tests | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: build and test (docker) | |
run: | | |
docker build --tag whoogle-search:test . | |
docker run --publish 5000:5000 --detach --name whoogle-search-nocompose whoogle-search:test | |
sleep 15 | |
docker exec whoogle-search-nocompose curl -f http://localhost:5000/healthz || exit 1 | |
- name: build and test (docker compose) | |
run: | | |
docker rm -f whoogle-search-nocompose | |
WHOOGLE_IMAGE="whoogle-search:test" docker compose up --detach | |
sleep 15 | |
docker exec whoogle-search curl -f http://localhost:5000/healthz || exit 1 |