Skip to content

Update requirements.txt #8

Update requirements.txt

Update requirements.txt #8

Workflow file for this run

name: Python Package Installation and Test Script Execution
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8' # You can specify any version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run test script
run: |
chmod +x ./test.sh
./test.sh