diff --git a/Makefile b/Makefile index 4b6af816..c26b9e3b 100644 --- a/Makefile +++ b/Makefile @@ -56,6 +56,9 @@ with-deps: buildtool vet: buildtool "${BUILDTOOL_PATH}" vet +check: buildtool + "${BUILDTOOL_PATH}" check + application: flamenco-manager flamenco-worker flamenco-manager: buildtool diff --git a/web/project-website/content/development/building/_index.md b/web/project-website/content/development/building/_index.md index 39ddcf19..33f0b5d5 100644 --- a/web/project-website/content/development/building/_index.md +++ b/web/project-website/content/development/building/_index.md @@ -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-js` | Generate the JavaScript code, containing the OpenAPI client code for the web interface. | | `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. | | `version` | Print some version numbers, mostly for debugging the Makefile itself. | | `format` | Run the auto-formatter on all Go code. |