Skip to content

v0.0.1

v0.0.1 #6

Workflow file for this run

name: Streamlit app actions
on: [push, pull_request]
jobs:
streamlit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.11'
- uses: streamlit/[email protected]
with:
app-path: Chatbot.py
ruff: true
pytest-args: -v --junit-xml=test-results.xml
- if: always()
uses: pmeier/pytest-results-action@main
with:
path: test-results.xml
summary: true
display-options: fEX