Skip to content

Commit

Permalink
fixed streamlit check keeps on running
Browse files Browse the repository at this point in the history
- earlier we were having `streamlit run <app_name>.py` due to this it keep on running, now we are just checking the file instead of running it
  • Loading branch information
typhonshambo committed Jul 7, 2024
1 parent b4cc75f commit 4f2d3be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Python dependencies
run: |
pip install black flake8 streamlit
- name: Run Python linters
uses: wearerequired/lint-action@v2
with:
Expand All @@ -35,5 +35,5 @@ jobs:

- name: Streamlit Check
run: |
streamlit run streamlit.py
# Remove the old 'streamlit run streamlit.py' line.
python streamlit_test.py && echo "Streamlit test passed!" || echo "Streamlit test failed."

0 comments on commit 4f2d3be

Please sign in to comment.