-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (48 loc) · 1.08 KB
/
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
---
name: Go
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.17
- name: Checkout
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
build:
name: Build
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.17
- name: Checkout
uses: actions/checkout@v4
- name: Vet
run: go vet -v ./...
- name: Test
run: go test -v ./...
- name: Build binary (for testing)
run: go build -v -trimpath -ldflags="-s -w -buildid=" -o staticassetlint .
- name: Upload binary (for testing)
uses: actions/upload-artifact@v4
with:
name: staticassetlint
path: staticassetlint
if-no-files-found: error