Found new managed modules references (#1124) #2383
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: ci | |
| on: | |
| push: | |
| workflow_dispatch: {} # support manual runs | |
| permissions: | |
| contents: read | |
| concurrency: ci-${{ github.ref }} | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24.x | |
| check-latest: true | |
| cache: true | |
| - name: Test | |
| run: make test | |
| - name: Lint | |
| run: make checkgenerate && make lint |