Add verification of go import organization #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify organization of imports | |
on: | |
push: | |
branches: | |
- '**' | |
paths: | |
- '**.go' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
paths: | |
- '**.go' | |
jobs: | |
verify-imports: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify that imports are organized | |
run: make verify-imports |