From 64ed57323a814b988cd720383800620244acc4a8 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Wed, 17 Aug 2022 11:04:58 +0200 Subject: [PATCH] CI: instal docker for macos --- .github/workflows/ci-tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 85c251aca..efa196aaa 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -37,6 +37,16 @@ jobs: run: | pip install -U pip setuptools wheel pip install tox tox-gh-actions + - name: 'SETUP MacOS: load Homebrew cache' + uses: actions/cache@v3 + if: runner.os == 'macOS' + with: + path: | + ~/Library/Caches/Homebrew/downloads/*--Docker.dmg + key: brew-actions-setup-docker-1.0.11 + restore-keys: brew-actions-setup-docker- + - name: setup docker on macos (default stable version) + uses: docker-practice/actions-setup-docker@master - name: Test with tox run: tox - name: Upload coverage to Codecov