diff options
author | Evgeny Kuznetsov <evgeny@kuznetsov.md> | 2021-04-29 14:54:24 +0300 |
---|---|---|
committer | Evgeny Kuznetsov <evgeny@kuznetsov.md> | 2021-04-29 14:54:24 +0300 |
commit | b50d7518e1b9dc66210b53bf0e6a85e8c003896e (patch) | |
tree | ced345ec55494e22216706b977c18976066e80b9 | |
parent | 615844dd6154a4f77c05957a71ae30cd1aa90587 (diff) | |
download | radiorus-rss-b50d7518e1b9dc66210b53bf0e6a85e8c003896e.tar.gz radiorus-rss-b50d7518e1b9dc66210b53bf0e6a85e8c003896e.zip |
use github-actions for linter
-rw-r--r-- | .github/workflows/golangci-lint.yml | 38 | ||||
-rw-r--r-- | .travis.yml | 2 |
2 files changed, 38 insertions, 2 deletions
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 |