Skip to content

Health check

Health check #47

Workflow file for this run

name: Health check
on:
workflow_dispatch:
schedule:
- cron: "0 5 * * *"
jobs:
health-check:
name: Health check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Set up python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
cache: poetry
- name: Install dependencies
run: poetry install --only main
- name: Run health check
run: poetry run python -m x_notes.health_check