Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
chore: generate schema
Browse files Browse the repository at this point in the history
  • Loading branch information
nikpivkin committed Jan 11, 2024
1 parent 9a50155 commit d1da558
Show file tree
Hide file tree
Showing 3 changed files with 328 additions and 27 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/verify-schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: verify schema
on:
pull_request:
merge_group:
jobs:
build:
name: verifying schema
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum

- run: go run ./cmd/schema verify

4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ fix-typos:
quality:
which golangci-lint || go install github.com/golangci/golangci-lint/cmd/[email protected]
golangci-lint run --timeout 3m --verbose

.PHONY: schema
schema:
go run ./cmd/schema generate
Loading

0 comments on commit d1da558

Please sign in to comment.