[Feat]: add --exclude-path flag to lint command (PLA-128) #170
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.x" | |
| - name: Run linter | |
| uses: golangci/golangci-lint-action@v7 | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.x" | |
| - name: Build | |
| run: go build ./... | |
| - name: Test | |
| run: go test ./... | |
| keeper-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.x" | |
| - name: Build blockstm-sim | |
| run: go build -o build/blockstm-sim ./cmd/blockstm-sim | |
| - name: Run keeper lint (canary — known violations) | |
| run: | | |
| ./build/blockstm-sim lint \ | |
| --sdk-path ./x/simcanary \ | |
| --format json \ | |
| > lint-report.json 2>&1 || true | |
| echo "keeper-lint complete. findings:" | |
| cat lint-report.json | |
| - name: Upload lint report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: keeper-lint-report | |
| path: lint-report.json | |
| if-no-files-found: warn |