Skip to content

Add cicd pipeline for Streamlit app #2

Add cicd pipeline for Streamlit app

Add cicd pipeline for Streamlit app #2

Workflow file for this run

name: ${{ github.run_number}} - Financial Dashboard CICD pipeline
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checking code
- uses: actions/checkout@v4
- name: Installing Python
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Installing Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Testing & Linting Streamlit app
- uses: streamlit/streamlit-app-action@v0.0.3
with:
app-path: './src/app.py'
ruff: true