-
Notifications
You must be signed in to change notification settings - Fork 35
48 lines (47 loc) · 1.03 KB
/
build.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
name: "Build"
on: [push, pull_request]
jobs:
lint:
name: golangci-lint
runs-on: ubuntu-20.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
- name: checkout
uses: actions/checkout@v3
- name: lint
run: make lint
test:
name: test
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
- name: checkout
uses: actions/checkout@v3
- name: install hwdata -yq
run: sudo apt-get install hwdata -yq
- name: test
run: make test-coverage
build:
name: build
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
- name: checkout
uses: actions/checkout@v3
- name: build
run: make build