Hourly - Envs Checker #2307
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: Hourly - Envs Checker | |
on: | |
schedule: | |
- cron: '0 * * * *' # hourly | |
workflow_dispatch: | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20' | |
- name: Run checks | |
working-directory: ./zk/debug_tools/env-checker | |
run: go run main.go -envFile envs.json |