From 75d3c4cc388e3db125c24174dc7d0229ec99e627 Mon Sep 17 00:00:00 2001 From: Gokhun Celik Date: Sun, 14 Jul 2024 16:44:51 +0200 Subject: [PATCH] Install docker on macOS with another action --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index df8e63b..54067e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,10 +12,8 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: Homebrew/actions/setup-homebrew@master - - run: brew install docker colima - if: startsWith(matrix.os, 'macOS') - - run: colima start - if: startsWith(matrix.os, 'macOS') + - if: startsWith(runner.os, 'macos') + uses: douglascamata/setup-docker-macos-action@main - uses: actions/checkout@v4 with: fetch-depth: 0