Skip to content

Daily Run

Daily Run #44

Workflow file for this run

name: Daily Run
on:
schedule:
- cron: '53 17 * * *' # Runs every day at 12:53 PM EST (17:53 UTC)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x' # Use '3.x' for the latest version or specify, e.g., '3.8'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run script
run: python test-github-actions.py # Relative to the root of the repository