Skip to content

Hourly test

Hourly test #11705

Workflow file for this run

name: Hourly test
on:
schedule:
- cron: "0 0-10,12-23 * * *" # hourly, except at 12:00 UTC (07:00 EST)
# - cron: "0 */3 * * *" # three-hourly
jobs:
run_tests:
name: Send a test poem every hour
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install -v .
- name: Curate a poem, and send it to the testserv
run:
python scripts/send-poem.py --kind "test" --username "[email protected]" --password ${{ secrets.PFT_PW }} --listserv_filename "data/poems/testserv.csv"
--github_repo_name "thomaswmorris.github.io" --github_token ${{ secrets.GH_TOKEN }}