Merge branch 'master' of https://github.com/raoulcollenteur/Python-Hy… #38
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: Check URLs | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' # Runs every Sunday at midnight UTC | |
jobs: | |
check_urls: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Run URL check script | |
run: python check_urls.py |