Daily Run #43
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: 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 |