We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b5edf8 commit 234cb41Copy full SHA for 234cb41
.github/workflows/verify_imports.yml
@@ -0,0 +1,20 @@
1
+name: Verify organization of imports
2
+on:
3
+ push:
4
+ branches:
5
+ - '**'
6
+ paths:
7
+ - '**.go'
8
+ tags-ignore:
9
+ - 'v*'
10
+ pull_request:
11
12
13
+jobs:
14
+ verify-imports:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+
19
+ - name: Verify that imports are organized
20
+ run: make verify-imports
0 commit comments