Skip to content

Commit 234cb41

Browse files
anishasthanaopenshift-merge-robot
authored andcommitted
Add verify-imports github action
Signed-off-by: Anish Asthana <[email protected]>
1 parent 9b5edf8 commit 234cb41

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/verify_imports.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Verify organization of imports
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
paths:
7+
- '**.go'
8+
tags-ignore:
9+
- 'v*'
10+
pull_request:
11+
paths:
12+
- '**.go'
13+
jobs:
14+
verify-imports:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
- name: Verify that imports are organized
20+
run: make verify-imports

0 commit comments

Comments
 (0)