Skip to content

Commit 4e80a6e

Browse files
committed
Add verify-imports github action
Signed-off-by: Anish Asthana <[email protected]>
1 parent 5dd7533 commit 4e80a6e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/verify_imports.yml

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

0 commit comments

Comments
 (0)