summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
author赵智超 <1012112796@qq.com>2020-05-15 07:28:26 +0800
committerGitHub <noreply@github.com>2020-05-14 19:28:26 -0400
commit4159866528e3ceb06d0b7ef1bdb3dc80ce6d0fc4 (patch)
tree6b60eeb8465eb10db9f3ba026ceb3ee51ec426d6 /Makefile
parent66a9ef90362db1280808ff74e40c2e670f992fcb (diff)
downloadgitea-4159866528e3ceb06d0b7ef1bdb3dc80ce6d0fc4.tar.gz
gitea-4159866528e3ceb06d0b7ef1bdb3dc80ce6d0fc4.zip
docs: update 'Testing redux' in CONTRIBUTING.md (#11386)
* docs: update 'Testing redux' in CONTRIBUTING.md try simplfy it to make it more easy for contributor to follow it to test their work by themselves. Signed-off-by: a1012112796 <1012112796@qq.com> * align help message strings Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile46
1 files changed, 23 insertions, 23 deletions
diff --git a/Makefile b/Makefile
index 0c63cef9cc..37c9a46d81 100644
--- a/Makefile
+++ b/Makefile
@@ -144,29 +144,29 @@ include docker/Makefile
.PHONY: help
help:
@echo "Make Routines:"
- @echo " - \"\" equivalent to \"build\""
- @echo " - build build everything"
- @echo " - frontend build frontend files"
- @echo " - backend build backend files"
- @echo " - clean delete backend and integration files"
- @echo " - clean-all delete backend, frontend and integration files"
- @echo " - lint lint everything"
- @echo " - lint-frontend lint frontend files"
- @echo " - lint-backend lint backend files"
- @echo " - watch-frontend watch frontend files and continuously rebuild"
- @echo " - webpack build webpack files"
- @echo " - fomantic build fomantic files"
- @echo " - generate run \"go generate\""
- @echo " - fmt format the Go code"
- @echo " - generate-swagger generate the swagger spec from code comments"
- @echo " - swagger-validate check if the swagger spec is valid"
- @echo " - golangci-lint run golangci-lint linter"
- @echo " - revive run revive linter"
- @echo " - misspell check for misspellings"
- @echo " - vet examines Go source code and reports suspicious constructs"
- @echo " - test run unit test"
- @echo " - test-sqlite run integration test for sqlite"
- @echo " - pr#<index> build and start gitea from a PR with integration test data loaded"
+ @echo " - \"\" equivalent to \"build\""
+ @echo " - build build everything"
+ @echo " - frontend build frontend files"
+ @echo " - backend build backend files"
+ @echo " - clean delete backend and integration files"
+ @echo " - clean-all delete backend, frontend and integration files"
+ @echo " - lint lint everything"
+ @echo " - lint-frontend lint frontend files"
+ @echo " - lint-backend lint backend files"
+ @echo " - watch-frontend watch frontend files and continuously rebuild"
+ @echo " - webpack build webpack files"
+ @echo " - fomantic build fomantic files"
+ @echo " - generate run \"go generate\""
+ @echo " - fmt format the Go code"
+ @echo " - generate-swagger generate the swagger spec from code comments"
+ @echo " - swagger-validate check if the swagger spec is valid"
+ @echo " - golangci-lint run golangci-lint linter"
+ @echo " - revive run revive linter"
+ @echo " - misspell check for misspellings"
+ @echo " - vet examines Go source code and reports suspicious constructs"
+ @echo " - test[\#TestSpecificName] run unit test"
+ @echo " - test-sqlite[\#TestSpecificName] run integration test for sqlite"
+ @echo " - pr#<index> build and start gitea from a PR with integration test data loaded"
.PHONY: go-check
go-check: