From fad587fa2e71204438be5ebad6046b2a50675903 Mon Sep 17 00:00:00 2001 From: David Lee Date: Wed, 24 Apr 2024 13:43:59 +0800 Subject: [PATCH] feat: brew install only for macos --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41748a953..6be91c238 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,8 @@ jobs: with: java-version: '11' distribution: 'temurin' - - run: brew install python-setuptools + - if: matrix.platform == 'macos-latest' + run: brew install python-setuptools - run: npm run setup - run: npm run test - name: Upload coverage report to Codecov