Skip to content

Commit

Permalink
Install Docker Buildx and Docker Compose in runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
javiarrobas committed Sep 12, 2024
1 parent 0d6ff91 commit 095265b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
- name: List of files in the repository
run: |
ls ${{ github.workspace }}
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Test local version
run: make test-local-in-container
test-vectorized:
Expand All @@ -31,6 +37,12 @@ jobs:
- name: List of files in the repository
run: |
ls ${{ github.workspace }}
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Test vectorized environment
run: make test-vectorized-in-container
test-service:
Expand Down

0 comments on commit 095265b

Please sign in to comment.