Skip to content

Commit

Permalink
Add verify-imports github action
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Asthana <[email protected]>
  • Loading branch information
anishasthana committed Jul 27, 2023
1 parent fdc664b commit 87ef312
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/verify_imports.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Verify organization of imports
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:

jobs:
verify-imports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Verify that imports are organized
run: make verify-imports

0 comments on commit 87ef312

Please sign in to comment.