From b50d7518e1b9dc66210b53bf0e6a85e8c003896e Mon Sep 17 00:00:00 2001 From: Evgeny Kuznetsov Date: Thu, 29 Apr 2021 14:54:24 +0300 Subject: use github-actions for linter --- .github/workflows/golangci-lint.yml | 38 +++++++++++++++++++++++++++++++++++++ .travis.yml | 2 -- 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/golangci-lint.yml diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml new file mode 100644 index 0000000..d1d10c0 --- /dev/null +++ b/.github/workflows/golangci-lint.yml @@ -0,0 +1,38 @@ +name: golangci-lint +on: + push: + tags: + - v* + branches: + - master + - main + pull_request: +jobs: + golangci: + name: lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: golangci-lint + uses: golangci/golangci-lint-action@v2 + with: + # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version + version: latest + + # Optional: working directory, useful for monorepos + # working-directory: somedir + + # Optional: golangci-lint command line arguments. + # args: --issues-exit-code=0 + + # Optional: show only new issues if it's a pull request. The default value is `false`. + # only-new-issues: true + + # Optional: if set to true then the action will use pre-installed Go. + # skip-go-installation: true + + # Optional: if set to true then the action don't cache or restore ~/go/pkg. + # skip-pkg-cache: true + + # Optional: if set to true then the action don't cache or restore ~/.cache/go-build. + # skip-build-cache: true diff --git a/.travis.yml b/.travis.yml index aef86ee..7087427 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,8 @@ env: - GO111MODULE=on before_script: - - bash <(curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0) script: - - golangci-lint run - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... - go build -- cgit v1.2.3