Run Job Scraper #120
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: Run main.py Every Minute | |
on: | |
schedule: | |
- cron: '45 4 * * *' # runs everyday 04 : 45 | |
jobs: | |
run-main-py: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.12 | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Run JobScraper.py | |
run: python JobScraper.py |