Skip to content

Commit

Permalink
chore: Install Docker on macOS in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
7nohe committed May 19, 2024
1 parent 0fa794e commit 5b78caa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
- run: cp .env.example .env
working-directory: examples/laravel10-app

- name: install docker on macos
if: matrix.os == 'macos-latest'
run: |
brew install docker
colima start
- name: composer install
run: docker run --rm -u "$(id -u):$(id -g)" -v "$(pwd):/var/www/html" -w /var/www/html laravelsail/php81-composer:latest composer install --ignore-platform-reqs
working-directory: examples/laravel10-app
Expand Down

0 comments on commit 5b78caa

Please sign in to comment.