Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sacloud/makefile v0.0.7 #108

Merged
merged 2 commits into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions includes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ git remote add makefile https://github.com/sacloud/makefile.git
#### 追加(初回のみ)

```bash
git subtree add --prefix=includes --squash makefile v0.0.6
git subtree add --prefix=includes --squash makefile v0.0.7
```

利用する側のプロジェクトではMakefileを以下のように記述します。
Expand All @@ -41,7 +41,7 @@ tools: dev-tools # toolsゴールはsacloudプロダクト向け日次CIを行
#### 更新

```bash
git subtree pull --prefix=includes --squash makefile v0.0.6
git subtree pull --prefix=includes --squash makefile v0.0.7
```

## License
Expand Down
2 changes: 1 addition & 1 deletion includes/go/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ COPYRIGHT_YEAR ?= 2022
COPYRIGHT_FILES ?= $$(find . -name "*.go" -print | grep -v "/vendor/")
GO ?= go
DEFAULT_GOALS ?= fmt set-license go-licenses-check goimports lint test
GOLANG_CI_LINT_VERSION ?= v1.46.2
GOLANG_CI_LINT_VERSION ?= v1.49.0
TEXTLINT_ACTION_VERSION ?= v0.0.3

.DEFAULT_GOAL = default
Expand Down