avoided using temp.js #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Test Workflow | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
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: Create outputData directory | |
run: mkdir -p ${{ github.workspace }}/functionRetriever/outputData | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11.1' | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
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 |