-
Notifications
You must be signed in to change notification settings - Fork 9
114 lines (85 loc) · 2.53 KB
/
pull-request.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: pull-request
on:
pull_request:
branches:
- main
jobs:
java:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- uses: bufbuild/buf-setup-action@v1
- name: generate
run: make generate
- name: test
run: ./gradlew build
working-directory: java
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
# we need Node for the local execution of protoc Typescript plugin
- uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'node/package-lock.json'
node-version-file: 'node/.nvmrc'
# we need Node for the local execution of protoc Typescript plugin
- name: install
run: npm ci
working-directory: node
- name: generate
run: make generate TEMPLATE=buf.gen.node.yaml
- name: checks
run: npm run checks
working-directory: node
node-proto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
# we need Node for the local execution of protoc Typescript plugin
- uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'node-proto/package-lock.json'
node-version-file: 'node-proto/.nvmrc'
# we need Node for the local execution of protoc Typescript plugin
- name: install
run: npm ci
working-directory: node-proto
- name: generate
run: make generate TEMPLATE=buf.gen.node-proto.yaml
- name: checks
run: npm run checks
working-directory: node-proto
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: bufbuild/buf-setup-action@v1
- name: generate go code
run: make generate TEMPLATE=buf.gen.go.yaml
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- uses: bufbuild/buf-lint-action@v1
breaking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- uses: bufbuild/buf-breaking-action@v1
if: always()
with:
against: "https://github.com/stroeer/tapir.git#branch=main"