forked from corneliusweig/ketall
-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (52 loc) · 1.36 KB
/
ci.yml
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
name: ketall CI
on:
push:
branches:
- '*'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
id: go
with:
go-version: 1.26.2
- name: Verify go.mod is sane
run: go mod tidy && git diff --no-patch --exit-code
- name: Golangci-lint
uses: golangci/golangci-lint-action@v9.2.0
- name: Run unit tests
run: go test ./...
- name: GoReleaser Build Snapshot
if: "!contains(github.ref, 'tags')"
uses: goreleaser/goreleaser-action@v7
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@v7
with:
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update new version in krew-index
if: contains(github.ref, 'tags')
uses: rajatjindal/krew-release-bot@v0.0.51
with:
krew_template_file: .krew.yaml