Options changes for Pg support #187
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: linter | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| GOLANGCI_LINT_VERSION: v2.4.0 | |
| jobs: | |
| golangcilint: | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25" | |
| - name: Lint main module | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: ${{ env.GOLANGCI_LINT_VERSION }} | |
| - name: Validate generated sources | |
| run: | | |
| go generate ./... | |
| git diff --exit-code | |
| - name: Validate main go.mod | |
| run: | | |
| go mod tidy -compat=1.19 && git diff --exit-code | |
| - name: Lint x/sqlite module | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| working-directory: ./x/sqlite | |
| version: ${{ env.GOLANGCI_LINT_VERSION }} | |
| - name: Validate x/sqlite go.mod | |
| run: | | |
| cd x/sqlite && go mod tidy && git diff --exit-code | |
| - name: Lint x/pg module | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| working-directory: ./x/pg | |
| version: ${{ env.GOLANGCI_LINT_VERSION }} | |
| - name: Validate x/pg go.mod | |
| run: | | |
| cd x/pg && go mod tidy && git diff --exit-code |