Skip to content

Commit

Permalink
ci: setup ci env
Browse files Browse the repository at this point in the history
  • Loading branch information
iret-kawashima committed Oct 16, 2023
1 parent bf93c71 commit 43566b7
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 10 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI
on:
push:
branches:
- main
- master
paths-ignore:
- "README.md"
tags-ignore:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches:
- main
- master
paths-ignore:
- "README.md"

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup go
uses: actions/setup-go@v4
with:
go-version: 1.21

- name: Unshallow
run: git fetch --prune --unshallow --tags

- name: Build
run: make build

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
args: --timeout=5m

- name: Run govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.21
go-package: ./...

- name: Run tests
run: |
git diff --cached --exit-code
make test
make bench
make vet
make cover
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: cover.html
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup go
uses: actions/setup-go@v4
with:
go-version: 1.21

- name: Run goreleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 0 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ builds:
- -s -w
- -X github.com/nekrassov01/alpen/main.Version={{.Version}}
- -X github.com/nekrassov01/alpen/main.Revision={{.ShortCommit}}

- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin

archives:
- format: tar.gz
name_template: >-
Expand Down
20 changes: 12 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export GO111MODULE=on
.PHONY: build
build: clean
go mod tidy
go build -ldflags "-X main.Version=$(VERSION) -X main.Revision=$(REVISION)" -o $(BIN)
go build -ldflags "-X main.Version=$(VERSION) -X main.Revision=$(REVISION)" -o $(BIN) .

.PHONY: check
check: test vet golangci-lint govulncheck
check: test bench vet cover golangci-lint govulncheck

.PHONY: deps
deps:
Expand All @@ -44,24 +44,28 @@ golangci-lint:

.PHONY: govulncheck
govulncheck: deps
$(GOBIN)/govulncheck ./...
$(GOBIN)/govulncheck -test -json ./...

.PHONY: show-version
show-version: deps
$(GOBIN)/gobump show -r .

.PHONY: bump
bump: deps
@gobump up -w .

.PHONY: vet
vet:
go vet ./...
$(GOBIN)/gobump up -w .

.PHONY: test
test:
go test -race -cover -v ./... -coverprofile=cover.out -covermode=atomic

.PHONY: bench
bench:
go test -bench . -benchmem

.PHONY: vet
vet:
go vet ./...

.PHONY: cover
cover:
go tool cover -html=cover.out -o cover.html
Expand Down

0 comments on commit 43566b7

Please sign in to comment.