Skip to content

Remove APIGuard promotional section from README #38

Remove APIGuard promotional section from README

Remove APIGuard promotional section from README #38

Workflow file for this run

name: Streamlit Authenticator Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run Streamlit app and tests
run: |
nohup streamlit run tests/app.py &
pytest tests/tests.py --maxfail=1 --disable-warnings -q