Merge pull request #739 from RainbowMango/pr_enable_import_alias
CI: Enable import alises verification
This commit is contained in:
commit
46df7a6dff
|
|
@ -19,6 +19,8 @@ jobs:
|
|||
run: hack/verify-vendor.sh
|
||||
- name: lint
|
||||
run: hack/verify-staticcheck.sh
|
||||
- name: import alias
|
||||
run: hack/verify-import-aliases.sh
|
||||
codegen:
|
||||
name: codegen
|
||||
runs-on: ubuntu-18.04
|
||||
|
|
|
|||
|
|
@ -8,3 +8,6 @@ REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
|
|||
|
||||
bash "$REPO_ROOT/hack/update-codegen.sh"
|
||||
bash "$REPO_ROOT/hack/update-crdgen.sh"
|
||||
bash "$REPO_ROOT/hack/update-estimator-protobuf.sh"
|
||||
bash "$REPO_ROOT/hack/update-import-aliases.sh"
|
||||
bash "$REPO_ROOT/hack/update-vendor.sh"
|
||||
|
|
|
|||
|
|
@ -10,3 +10,4 @@ bash "$REPO_ROOT/hack/verify-codegen.sh"
|
|||
bash "$REPO_ROOT/hack/verify-crdgen.sh"
|
||||
bash "$REPO_ROOT/hack/verify-staticcheck.sh"
|
||||
bash "$REPO_ROOT/hack/verify-import-aliases.sh"
|
||||
bash "$REPO_ROOT/hack/verify-vendor.sh"
|
||||
|
|
|
|||
Loading…
Reference in New Issue