Skip to content

Commit

Permalink
python deps on win
Browse files Browse the repository at this point in the history
  • Loading branch information
jraymakers committed Jun 22, 2024
1 parent d8054da commit f08850c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/NodeJS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
# target_arch: arm64

steps:
- name: Setup Python
uses: actions/setup-python@v4

- name: Install Python dependencies
run: pip install pycparser

Expand All @@ -79,6 +82,9 @@ jobs:
- name: Install NPM dependencies & Build Node bindings
run: npm i

- name: Test High-Level API
run: npm run test-path api/test/api.test.ts

# - name: Update apt
# shell: bash
# run: |
Expand Down Expand Up @@ -149,13 +155,16 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4

- name: Install Python dependencies
run: pip install pycparser

- name: Checkout code
uses: actions/checkout@v3

- name: Install NPM dependencies & Build Node bindings
run: npm i

- name: API Test
- name: Test High-Level API
run: npm run test-path api/test/api.test.ts

# - name: Setup Ccache
Expand Down Expand Up @@ -213,13 +222,16 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4

- name: Install Python dependencies
run: pip install pycparser

- name: Checkout code
uses: actions/checkout@v3

- name: Install NPM dependencies & Build Node bindings
run: npm i

- name: API Test
- name: Test High-Level API
run: npm run test-path api/test/api.test.ts

# - name: Setup Node
Expand Down

0 comments on commit f08850c

Please sign in to comment.