Skip to content

remove install scipy as already there from basico #4

remove install scipy as already there from basico

remove install scipy as already there from basico #4

Workflow file for this run

# Workflow to run all tests
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install html2text
- name: run tests
run: |
cd tests
./run_all_tests.sh