Skip to content

Commit

Permalink
test build with custom python setup
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Dec 15, 2024
1 parent 33717e5 commit a06f5c0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]
Expand Down

0 comments on commit a06f5c0

Please sign in to comment.