-
Notifications
You must be signed in to change notification settings - Fork 11
50 lines (43 loc) · 942 Bytes
/
go.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
name: Go
on:
push:
branches: ["main", "dev"]
paths-ignore:
[
"README.*",
"LICENSE",
"assets/**",
"docs/**",
".github/**",
".gitignore",
".air.toml",
]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20.x", "1.21.x"]
include:
- go: 1.21.x
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: false # managed by golangci-lint
- name: Download Dependencies
run: |
go mod download
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --version
- name: Lint & Build
run: |
make lint
make build