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 361f569 commit 0fcda25
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/verify_imports.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 0fcda25

Please sign in to comment.