Refactor generated codes regarding of "def" feature (#256) #779
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
| name: lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.21' | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install tools | |
| run: make tools | |
| - name: build tools | |
| run: make build | |
| - name: run lint | |
| run: make lint |