-
Notifications
You must be signed in to change notification settings - Fork 172
46 lines (40 loc) · 956 Bytes
/
test.yaml
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
name: Test and Validate
on:
push:
paths-ignore:
- '**.md'
- '.github/ISSUE_TEMPLATE/**'
pull_request:
paths-ignore:
- '**.md'
- '.github/ISSUE_TEMPLATE/**'
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.18
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: make test
- name: Validate
run: make validate
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- name: "Set up Go 1.x"
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Check out code
uses: actions/checkout@v3
- name: Lint with golanci-lint
uses: golangci/golangci-lint-action@v3
with:
# version of golangci-lint to use
version: v1.50.1