Swap 3666 log data sources responses #21
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Build the docker-compose stack | |
run: | | |
cd test | |
docker-compose -f docker-compose-local-data-provider-test.ci.yaml up -d | |
- name: Wait until service ready | |
run: sleep 30s | |
shell: bash | |
- name: Check running containers | |
run: docker ps -a | |
- name: Check logs | |
run: docker logs test-search-api | |
- name: Check PaNOSC federated search configuration | |
run: docker exec test-search-api wget "http://test-search-api:3000" | |
- name: Run test suite | |
run: echo "Tests are fine!!! Everything is fine!!!" |