Skip to content

Commit

Permalink
Add testRepo repository and create inputData directory
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-t committed Jan 1, 2024
1 parent ff86608 commit 8c0c3f7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/get_function_data_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
path: 'functionRetriever' # Specify a path for the main repo

- name: Clone testRepo repository
run: |
mkdir -p ${{ github.workspace }}/inputData # Create inputData directory
git clone https://github.com/RapidReview-ai/testRepo ${{ github.workspace }}/inputData/testRepo
- name: Set up Python 3.x
uses: actions/setup-python@v2
Expand All @@ -19,15 +26,18 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.12.1'
node-version: '18.12.1'

- name: Install npm dependencies
run: npm install
working-directory: ${{ github.workspace }}/functionRetriever

- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
working-directory: ${{ github.workspace }}/functionRetriever

- name: Run tests
run: python test_get_function_data.py
working-directory: ${{ github.workspace }}/functionRetriever

0 comments on commit 8c0c3f7

Please sign in to comment.