Merge pull request #420 from jtraglia/fix-ci-workflows

Fix broken nodejs/csharp CI tests
This commit is contained in:
George Kadianakis 2024-04-29 20:26:47 +03:00 committed by GitHub
commit 58b09bdafe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -71,7 +71,7 @@ jobs:
- host: ubuntu-22.04
location: linux-x64
- host: macos-latest
location: osx-x64
location: osx-arm64
- host: windows-latest
location: win-x64
steps:

View File

@ -27,8 +27,14 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node}}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install setuptools
run: python3 -m pip install setuptools
run: |
python -m pip install --upgrade pip
pip install setuptools
- name: Check formatting
if: matrix.os == 'ubuntu-latest'
working-directory: bindings/node.js