-
Notifications
You must be signed in to change notification settings - Fork 68
44 lines (34 loc) · 884 Bytes
/
ci.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
name: Main
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
ci:
name: ci
runs-on: ubuntu-latest
env:
GO_VERSION: "stable"
GOLANGCI_LINT_VERSION: v1.62
CGO_ENABLED: 0
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check and get dependencies
run: go mod tidy -diff
- name: golangci-lint action ${{ env.GOLANGCI_LINT_VERSION }}
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -ldflags "-s -w" -trimpath -o pigeon .