Skip to content

Monitoring smoke tests #27

Monitoring smoke tests

Monitoring smoke tests #27

name: Monitoring smoke tests
on:
workflow_dispatch:
push:
branches: [ main, master ]
schedule:
- cron: '0 * * * *' # hourly
jobs:
smoke-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run smoke tests
run: |
pytest -q