Skip to content

Merge pull request #2 from Shrividya/Shrividya-patch-1 #7

Merge pull request #2 from Shrividya/Shrividya-patch-1

Merge pull request #2 from Shrividya/Shrividya-patch-1 #7

Workflow file for this run

name: Python application CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run black
run:
black . --line-length=78
- name: Lint with flake8
run: |
pip install flake8
flake8 src/ --max-line-length=120
- name: Run Streamlit App Check
run: |
streamlit hello