Add KCD Hangzhou & OpenInfra Days China 2025 slides #189
Workflow file for this run
This file contains hidden or 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: Verify | |
| on: | |
| merge_group: | |
| check_suite: | |
| types: [completed,requested,rerequested] | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| name: Check that the presentations.yaml is syntactically correct | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.20.7' | |
| - run: go run cmd/main.go verify --file presentations.yaml |