Skip to content

Commit 0fcda25

Browse files
committed
Add verify-imports github action
Signed-off-by: Anish Asthana <[email protected]>
1 parent 361f569 commit 0fcda25

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/verify_imports.yml

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

0 commit comments

Comments
 (0)