Skip to content

Create LICENSE

Create LICENSE #12

Workflow file for this run

name: Streamlit App
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Download spaCy model
run: |
python -m spacy download en_core_web_sm
- name: Run Streamlit app
run: streamlit run app.py