fix: calling start multiple times should no-op #1002
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - v2 | |
| pull_request: | |
| branches: | |
| - v2 | |
| name: formatting | |
| jobs: | |
| check-sorted: | |
| name: check sorted | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v6 | |
| - name: verify example_test.go | |
| run: | | |
| grep "^func [a-z-A-Z]" example_test.go | sort -c |