-
Notifications
You must be signed in to change notification settings - Fork 1.5k
37 lines (35 loc) · 923 Bytes
/
test-and-build.yaml
File metadata and controls
37 lines (35 loc) · 923 Bytes
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
name: test-and-build
on:
pull_request: {}
workflow_call: {}
jobs:
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
with:
fetch-depth: 0
- name: Setup build environment
uses: ./.github/actions/setup-build
- name: Unit test
run: |
make build
make unit-test-no-generate
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
with:
fetch-depth: 0
- name: Setup build environment
uses: ./.github/actions/setup-build
- name: Check go.mod and go.sum
run: make check-gomod
- name: Check schema.json
run: make check-schema
- name: Lint
run: make lint