Skip to content

Commit 9756bf1

Browse files
committed
fix: Add Docker installation step for macOS runners
- Introduced a conditional step to install Docker on macOS runners. - Utilized `brew` for Docker installation and `colima` for environment setup.
1 parent 90ef56d commit 9756bf1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
./check.sh
2828
post: |
2929
./post_check.sh
30+
- name: Install docker (Missing on MacOS)
31+
if: runner.os == 'macos'
32+
shell: bash
33+
run: |
34+
brew install docker
3035
- name: Deploy over SSH
3136
shell: bash
3237
env:

0 commit comments

Comments
 (0)