diff --git a/.github/workflows/verify_imports.yml b/.github/workflows/verify_imports.yml new file mode 100644 index 000000000..d75196f35 --- /dev/null +++ b/.github/workflows/verify_imports.yml @@ -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