Skip to content

Commit

Permalink
✨ feat: add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xE8551CCB committed Jul 1, 2020
1 parent c52ff09 commit 0a76fb7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v1
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.26

# 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
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ before_install:

script:
- 'go mod tidy'
- '`go env GOPATH`/bin/golangci-lint run'
- 'go test -v -covermode=atomic -coverprofile=coverage.out -race'
- 'goveralls -coverprofile=coverage.out -service=travis-ci'

0 comments on commit 0a76fb7

Please sign in to comment.