Monitoring #828
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Monitoring" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 18 * * *" | |
jobs: | |
daily_snapshots: | |
name: "Daily snapshots" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v3" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.x" | |
- name: "Install requirements" | |
run: | | |
pip install beautifulsoup4 | |
- name: "Check daily snapshots" | |
run: | | |
./monitoring/check_phpmyadmin_daily_snapshots.py |