Add make check target

Add a `make check` target, which just forwards to `mage check`.
This commit is contained in:
Sybren A. Stüvel 2025-06-17 10:15:08 +02:00
parent 67d66422fd
commit 0315f15277
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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. |