Pasticca Test #89
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: Pasticca Test | |
# This workflow is triggered at a scheduled interval of every 30 minutes | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
pinger_job: | |
name: A job to ping | |
runs-on: ubuntu-latest | |
env: | |
URL: 'https://pastilapi.glitch.me/test' | |
METHOD: GET # the method used to make the request. It is GET by default | |
steps: | |
- id: ping | |
uses: sisodiya2421/pinger@master |