Nightly Checks #320
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: Nightly Checks | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Midnight every day | |
jobs: | |
schemas: | |
name: Schemas | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.20" | |
- name: Check if bundled schemas are up to date | |
run: make check-schemas |