-
Notifications
You must be signed in to change notification settings - Fork 41
73 lines (72 loc) · 2.2 KB
/
generation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors
# SPDX-License-Identifier: Apache-2.0
name: Code Generation
on:
push:
branches:
- main
- release-*
paths-ignore:
- "**.md"
- "docs/**"
- "**.txt"
- "images/**"
- "LICENSE"
pull_request:
branches:
- main
paths-ignore:
- "**.md"
- "docs/**"
- "**.txt"
- "images/**"
- "LICENSE"
jobs:
lint-protos:
runs-on: ubuntu-latest
steps:
# Run `git checkout`
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Install the `buf` CLI
- uses: bufbuild/buf-action@3fb70352251376e958c4c2c92c3818de82a71c2b # v1.0.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
push: false
archive: false
pr_comment: false
lint: true
format: false
breaking: false # Check for breaking changes in the next step
proto-breaking-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: bufbuild/buf-action@3fb70352251376e958c4c2c92c3818de82a71c2b # v1.0.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
push: false
archive: false
pr_comment: false
format: false
breaking: true
input: 'proto'
breaking_against: "https://github.com/mindersec/minder.git#branch=main,subdir=proto"
sqlc-generation:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: "go.mod"
- name: Make bootstrap
run: |
make bootstrap
- name: Generate Go code from SQL and check for syntax errors
shell: bash
run: |
make sqlc
- name: Check for uncommitted SQLC changes
run: |
git diff --exit-code || (echo "Error: Uncommitted changes detected after running 'sqlc generate'. Please commit the changes and try again." && exit 1)