Skip to content

Commit 00accfc

Browse files
authored
Merge pull request #815 from bschaatsbergen/add-prow-lint-script
chore: add lint script for Prow job
2 parents 263a129 + e844ce1 commit 00accfc

File tree

1 file changed

+10
-0
lines changed
  • scripts/ci/presubmits

1 file changed

+10
-0
lines changed

scripts/ci/presubmits/lint

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
set -o errexit
4+
set -o nounset
5+
set -o pipefail
6+
7+
REPO_ROOT="$(git rev-parse --show-toplevel)"
8+
cd ${REPO_ROOT}
9+
10+
make lint

0 commit comments

Comments
 (0)