mirror of
https://github.com/ahmetb/kubectx.git
synced 2026-03-18 03:42:12 +00:00
26 lines
632 B
YAML
26 lines
632 B
YAML
name: Go implementation (CI)
|
|
on:
|
|
push:
|
|
pull_request:
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.14
|
|
- name: Ensure gofmt
|
|
run: test -z "$(gofmt -s -d .)"
|
|
- name: Ensure go.mod is already tidied
|
|
run: go mod tidy && git diff --no-patch --exit-code
|
|
- name: Run unit tests
|
|
run: go test ./...
|
|
- name: GoReleaser
|
|
uses: goreleaser/goreleaser-action@v1
|
|
with:
|
|
version: latest
|
|
args: release --snapshot --skip-publish --rm-dist
|