Skip to content

Ping Web Site

Ping Web Site #23163

Workflow file for this run

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