Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix gh actions #522

Merged
merged 1 commit into from
Sep 30, 2023
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
Loading