mirror of https://github.com/knative/func.git
17 lines
349 B
YAML
17 lines
349 B
YAML
name: Func Check Schema
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
check:
|
|
name: Check Schema
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu-latest"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: knative/actions/setup-go@main
|
|
- name: Check that 'func.yaml schema' is up-to-date
|
|
run: make schema-check
|