Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
first up
  • Loading branch information
cjwinchester authored Dec 30, 2023
1 parent af74ca2 commit 126e675
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Crawl

on:
schedule:
- cron: "0 2 * * *"

jobs:
scrape:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- run: pip install requests bs4
- name: Run crawler
run: python crawler/main.py

0 comments on commit 126e675

Please sign in to comment.