Skip to content

tooling: generation for TC services / GH labels, update workflows #37

tooling: generation for TC services / GH labels, update workflows

tooling: generation for TC services / GH labels, update workflows #37

---
name: Validate Examples
permissions:
contents: read
pull-requests: read
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '.github/workflows/validate-examples.yaml'
- 'examples/**'
concurrency:
group: 'examples-${{ github.head_ref }}'
cancel-in-progress: true
jobs:
validate-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ./.go-version
- run: bash scripts/gogetcookie.sh
- run: make tools
- run: make validate-examples
save-artifacts-on-fail:
if: ${{ needs.validate-examples.result }} == 'failure'
uses: ./.github/workflows/save-artifacts.yaml
comment-on-fail:
if: ${{ needs.validate-examples.result }} == 'failure'
uses: ./.github/workflows/comment-failure.yaml