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