fix get mod and fix gen swagger #2016
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
| name: jzero-ci | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| pull_request: | |
| jobs: | |
| golangci: | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.3' | |
| - name: Install Tool | |
| run: | | |
| cd cmd/jzero | |
| go install | |
| jzero check | |
| - name: format go | |
| run: | | |
| jzero format -d --git-change=false | |
| - uses: actions/checkout@v5 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: latest | |
| working-directory: ${{ matrix.workdir }} | |
| skip-go-installation: true | |
| skip-pkg-cache: true | |
| - name: run test case | |
| run: | | |
| go test ./... |