Skip to content

Merge branch 'master' of https://github.com/raoulcollenteur/Python-Hy… #23

Merge branch 'master' of https://github.com/raoulcollenteur/Python-Hy…

Merge branch 'master' of https://github.com/raoulcollenteur/Python-Hy… #23

Workflow file for this run

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