-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.21 KB
/
go.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
47
48
49
50
51
52
53
54
55
56
57
name: Go - Development Build
on:
pull_request:
push:
branches:
- main
concurrency:
# Cancels pending runs when a PR gets updated.
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.20.9
- 1.21.2
steps:
- uses: actions/checkout@v3.5.3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4.0.1
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install Go Dependencies
run: go get ./...
- name: Execute Go Build
run: go build -v ./...
- name: Execute Go Test
run: go test -v ./...
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- name: Setup Go
uses: actions/setup-go@v4.0.1
with:
go-version: 1.20.9
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.6.0
with:
version: v1.53.3
skip-pkg-cache: true
skip-build-cache: true
args: --timeout=10m