Skip to content

Commit

Permalink
Fix docker compose in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amishas157 committed Aug 7, 2024
1 parent b2a3ae6 commit 00056df
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,21 @@ jobs:
docker-compose:
runs-on: ubuntu-latest

services:
docker:
image: docker:19.03.12
options: --privileged

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build Docker Image
- name: Set up Docker Compose
run: |
docker build -f docker/docker.test -t stellar-etl-integration-test .
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Set up Docker Compose
uses: docker/compose-action@v2
- name: Build Docker Image
run: |
docker-compose build
- name: Build and start services
run: |
Expand Down

0 comments on commit 00056df

Please sign in to comment.