Merge pull request #420 from jtraglia/fix-ci-workflows
Fix broken nodejs/csharp CI tests
This commit is contained in:
commit
58b09bdafe
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue