Skip to content

Updated requirements.txt #11

Updated requirements.txt

Updated requirements.txt #11

Workflow file for this run

name: Function test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8.12
uses: actions/setup-python@v4
with:
python-version: 3.8.12
architecture: x64
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install -r "requirements.txt"
- name: Run pruning function test script
run: |
python src/test/pruning_function_test.py