Skip to content

Commit

Permalink
Added missing docker-compose installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean151 committed Aug 2, 2024
1 parent bf7003d commit 04d1439
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:

jobs:
tests:
strategy:
matrix:
version: [8.3]
name: Tests
runs-on: ubuntu-22.04
steps:
Expand All @@ -20,12 +17,17 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
php-version: 8.3
tools: composer

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest

- name: Install docker compose
run: |
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
- name: Build the stack
run: docker-compose up -d

Expand Down

0 comments on commit 04d1439

Please sign in to comment.