aecd005c60
This seems fixable but not in a trivial way from what I could tell. Signed-off-by: Matt Moyer <moyerm@vmware.com>
12 lines
285 B
Bash
Executable File
12 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020 VMware, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
set -euo pipefail
|
|
ROOT="$(realpath "$(dirname "${BASH_SOURCE[0]}")/..")"
|
|
|
|
"$ROOT/hack/module.sh" lint
|
|
|
|
# TODO: re-enable once we figure out how to run docker in CI
|
|
#"$ROOT/hack/verify-codegen.sh"
|