diff options
| author | Kurenai <[email protected]> | 2021-10-19 12:20:09 +0800 |
|---|---|---|
| committer | Kurenai <[email protected]> | 2021-10-19 12:20:29 +0800 |
| commit | c3e215849a372adc4898f28ccaa8e44be9a5a016 (patch) | |
| tree | 8d7936a3f2199eed4770b9b04ec0f3edc1613c4d | |
| parent | 4946b6b582de7f34a779b1ccbde33405bca2dc4b (diff) | |
| parent | bcbfb790858ce9f6afcc3eeaa4f66cfd9dc7f9e7 (diff) | |
Merge branch 'workflow-demo'
| -rw-r--r-- | .github/workflows/build.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 26 | ||||
| -rw-r--r-- | Makefile | 33 |
3 files changed, 60 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2a001d..70d7357 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Build on: push: branches: - - workflow-demo + - master workflow_dispatch: pull_request: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..1e89ee8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release +on: + create: + tags: + - v* + workflow_dispatch: + +jobs: + release: + name: Release on GitHub + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v1 + + - name: Validates GO releaser config + uses: docker://goreleaser/goreleaser:latest + with: + args: check + + - name: Create release on GitHub + uses: docker://goreleaser/goreleaser:latest + with: + args: release + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..68c90d7 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ +PROJECT_NAME := "MkvAutoSubset" +PKG := "$(PROJECT_NAME)" +PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/) +GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go) + +.PHONY: all dep lint vet test test-coverage build clean + +all: build + +dep: ## Get the dependencies + @go mod download + +lint: ## Lint Golang files + @golint -set_exit_status ${PKG_LIST} + +vet: ## Run go vet + @go vet ${PKG_LIST} + +test: ## Run unittests + @go test -short ${PKG_LIST} + +test-coverage: ## Run tests with coverage + @go test -short -coverprofile cover.out -covermode=atomic ${PKG_LIST} + @cat cover.out >> coverage.txt + +build: dep ## Build the binary file + @go build -i -o build/main $(PKG) + +clean: ## Remove previous build + @rm -f ./build + +help: ## Display this help screen + @grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
\ No newline at end of file |
