kubebb / core

A declarative component lifecycle management platform
https://kubebb.github.io/website
Apache License 2.0
8 stars 9 forks source link

enable verify in makefile and our github workflow #253

Closed bjwswang closed 1 year ago

bjwswang commented 1 year ago

We actually have many scripts to verify/test our code but not used yet which is really great loss here.

The very simple way to enable verify is to run hack/verify-all.sh but this needs to be verified.

.PHONY: verify
verify:
    @hack/verify-all.sh

Besides, some scripts should not be used or optimzied. Overrall, this will be a difficulty-medium task.

To enable this in our github workflow, we need to add another action or task.