Ping Web Site #23163
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: Ping Web Site | |
on: | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: '*/10 * * * *' #every 10 minutes | |
jobs: | |
ping: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet tool install Web.Ping -g | |
- name: Ping www.zkea.net | |
run: Web.Ping --host http://www.zkea.net | |
- name: Ping demo.zkea.net | |
run: Web.Ping --host http://demo.zkea.net |