diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index 6193574..9892bb6 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -23,9 +23,8 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: Run with black + - name: Run black run: - pip install black black . --line-length=78 - name: Lint with flake8 run: | @@ -33,4 +32,4 @@ jobs: flake8 src/ --max-line-length=120 - name: Run Streamlit App Check run: | - streamlit hello \ No newline at end of file + streamlit hello diff --git a/requirements.txt b/requirements.txt index 6cadabb..a753719 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ pandas matplotlib requests textblob -streamlit \ No newline at end of file +streamlit +black