this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

replace golangci lint by staticcheck

pomdtr eb51f007 f82f43cb

+11 -15
+11 -15
.github/workflows/lint.yaml
··· 1 - name: lint 2 - on: ["push"] 3 - permissions: 4 - contents: read 1 + name: "CI" 2 + on: ["push", "pull_request"] 3 + 5 4 jobs: 6 - golangci: 7 - name: lint 5 + ci: 6 + name: "Run CI" 8 7 runs-on: ubuntu-latest 9 8 steps: 10 - - uses: actions/checkout@v3 11 - - uses: actions/setup-go@v5 12 - with: 13 - go-version: "1.23" 14 - cache: false 15 - - name: golangci-lint 16 - uses: golangci/golangci-lint-action@v6 17 - with: 18 - args: --timeout=5m 9 + - uses: actions/checkout@v2 10 + with: 11 + fetch-depth: 1 12 + - uses: dominikh/staticcheck-action@v1 13 + with: 14 + version: "latest"