-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
run: | ||
timeout: 10m | ||
concurrency: 4 | ||
|
||
concurrency: 4 | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- errcheck | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- staticcheck | ||
- unused | ||
- misspell | ||
- dupl | ||
- stylecheck | ||
|
||
linters-settings: | ||
gofmt: | ||
simplify: true | ||
dupl: | ||
threshold: 400 | ||
|
||
issues: | ||
# Maximum issues count per one linter. Set to 0 to disable. Default is 50. | ||
max-issues-per-linter: 0 | ||
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3. | ||
max-same-issues: 0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
- main | ||
pull_request: | ||
|
||
permissions: | ||
contents: write | ||
security-events: write | ||
# Optional: allow read access to pull request. Use with `only-new-issues` option. | ||
pull-requests: read | ||
|
||
jobs: | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
cache: false | ||
- name: Run tests | ||
run: go test ./... -coverprofile=coverage.out -coverpkg=./... -covermode=atomic | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.54 | ||
args: -v --config=.ci.yml | ||
skip-pkg-cache: true | ||
skip-build-cache: true | ||
|
||
- name: Static check | ||
uses: dominikh/staticcheck-action@v1.3.0 | ||
with: | ||
version: "2023.1.6" | ||
install-go: false | ||
cache-key: '1.21' |