From a06f5c03138299b5d310ac39a768b87c0d50000d Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Sun, 15 Dec 2024 21:53:16 +0100 Subject: [PATCH] test build with custom python setup --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cfae14f96..2e9e8082c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,6 +51,17 @@ jobs: node-version: 16.14.0 cache: "npm" + - name: Set up Python (mac only) + if: matrix.platform == 'mac' + uses: actions/setup-python@v4 + with: + python-version: '3.9' + + - name: Upgrade pip and install setuptools/wheel (mac only) + if: matrix.platform == 'mac' + run: | + python3 -m pip install --upgrade pip setuptools wheel + - name: Install dependencies run: | npm i -g lerna@3.8