forked from corneliusweig/ketall
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (50 loc) · 1.33 KB
/
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
45
46
47
48
49
50
name: ketall CI
on:
push:
branches:
- '*'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go 1.23.2
uses: actions/setup-go@v5
id: go
with:
go-version: 1.23.2
- name: Verify go.mod is sane
run: go mod tidy && git diff --no-patch --exit-code
- name: Golangci-lint
uses: golangci/[email protected]
- name: Run unit tests
run: go test ./...
- name: GoReleaser Build Snapshot
if: "!contains(github.ref, 'tags')"
uses: goreleaser/goreleaser-action@v6
with:
version: "~> v2"
args: release --snapshot --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: GoReleaser Release
if: contains(github.ref, 'tags')
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update new version in krew-index
if: contains(github.ref, 'tags')
uses: rajatjindal/[email protected]
with:
krew_template_file: .krew.yaml