.github/workflows/website_health.yml #248
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 Website Health | |
on: | |
schedule: | |
- cron: "*/10 * * * *" | |
jobs: | |
check-website-health: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.x | |
- name: Check Website Health | |
run: go run main.go --site docfliq.com --maxretries 6 |