Skip to content

Commit

Permalink
Add npm install to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-t committed Jan 1, 2024
1 parent fd06fad commit ff86608
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/get_function_data_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,28 @@ on:

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.11.1'
- name: Install dependencies

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.12.1'

- name: Install npm dependencies
run: npm install

- name: Install Python dependencies
run: |
pip install --upgrade pip
# Install any other dependencies your project requires:
# pip install -r requirements.txt
pip install -r requirements.txt
- name: Run tests
run: python test_get_function_data.py

0 comments on commit ff86608

Please sign in to comment.