Skip to content

Commit

Permalink
Merge pull request #382 from onc-healthit/LANTERN-728-GitHub-Actions-…
Browse files Browse the repository at this point in the history
…Tests-Failure

LANTERN-728: GitHub Actions Integration and End-to-end test run failures
  • Loading branch information
vishnu-mettles authored Aug 8, 2024
2 parents 2a5af62 + df6c4ee commit 317fe1b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- uses: actions/checkout@v2
- name: Start System
id: start-system
run: docker-compose up -d --build postgres lantern-mq endpoint_manager capability_querier capability_receiver
run: |
sudo apt-get install -y docker-compose
docker-compose up -d --build postgres lantern-mq endpoint_manager capability_querier capability_receiver
env:
LANTERN_DBHOST: localhost
LANTERN_DBPORT: 5432
Expand Down Expand Up @@ -51,7 +53,9 @@ jobs:
- uses: actions/checkout@v2
- name: Start System
id: start-system
run: docker-compose up -d --build postgres lantern-mq endpoint_manager capability_querier capability_receiver
run: |
sudo apt-get install -y docker-compose
docker-compose up -d --build postgres lantern-mq endpoint_manager capability_querier capability_receiver
- name: Run E2E Tests
run: make test_e2e_CI
env:
Expand Down

0 comments on commit 317fe1b

Please sign in to comment.