Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration tests
name: Integration

on:
pull_request:
Expand All @@ -11,13 +11,13 @@ on:
jobs:

docker-compose-test:
name: Integrations tests
name: Quest Smoke and Load Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start compose
run: docker-compose -f ./.github/docker-compose-test.yaml up --build --exit-code-from quest
run: docker-compose -f docker-compose-test.yaml up --build --exit-code-from quest
- name: Stop compose
if: always()
run: docker-compose -f ./.github/docker-compose-test.yaml down
run: docker-compose -f docker-compose-test.yaml down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
parseable:
build:
context: .
dockerfile: ../Dockerfile
dockerfile: Dockerfile
command: ["parseable", "s3-store"]
ports:
- 8000
Expand Down