Add make check
target
Add a `make check` target, which just forwards to `mage check`.
This commit is contained in:
parent
67d66422fd
commit
0315f15277
3
Makefile
3
Makefile
@ -56,6 +56,9 @@ with-deps: buildtool
|
|||||||
vet: buildtool
|
vet: buildtool
|
||||||
"${BUILDTOOL_PATH}" vet
|
"${BUILDTOOL_PATH}" vet
|
||||||
|
|
||||||
|
check: buildtool
|
||||||
|
"${BUILDTOOL_PATH}" check
|
||||||
|
|
||||||
application: flamenco-manager flamenco-worker
|
application: flamenco-manager flamenco-worker
|
||||||
|
|
||||||
flamenco-manager: buildtool
|
flamenco-manager: buildtool
|
||||||
|
@ -87,6 +87,7 @@ These are the main `make` targets:
|
|||||||
| `generate-py` | Generate the Python code, containing the OpenAPI client code for the Blender add-on. |
|
| `generate-py` | Generate the Python code, containing the OpenAPI client code for the Blender add-on. |
|
||||||
| `generate-js` | Generate the JavaScript code, containing the OpenAPI client code for the web interface. |
|
| `generate-js` | Generate the JavaScript code, containing the OpenAPI client code for the web interface. |
|
||||||
| `test` | Run the unit tests. |
|
| `test` | Run the unit tests. |
|
||||||
|
| `check` | Run various checks on the Go code. This includes `go vet` and checks for known vulnerabilities. |
|
||||||
| `clean` | Remove build-time files. |
|
| `clean` | Remove build-time files. |
|
||||||
| `version` | Print some version numbers, mostly for debugging the Makefile itself. |
|
| `version` | Print some version numbers, mostly for debugging the Makefile itself. |
|
||||||
| `format` | Run the auto-formatter on all Go code. |
|
| `format` | Run the auto-formatter on all Go code. |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user