Skip to content

Polished the streamlit app with logos #16

Polished the streamlit app with logos

Polished the streamlit app with logos #16

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run Smoke Tests
env:
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY || 'mock_key' }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN || 'mock_token' }}
run: |
pytest tests/test_smoke.py
build-docker:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t ghost-coder:${{ github.sha }} .