Turn off linter for windows (#294)

Turn off linter for windows
This commit is contained in:
Young Bu Park 2020-04-01 17:45:14 -07:00 committed by GitHub
parent d8e1728e06
commit f87cd99ee7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ jobs:
run: |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${{ env.GOROOT }}/bin" "${{ env.GOLANGCI_LINT_VER }}"
- name: Run make lint
if: matrix.target_arch != 'arm'
if: matrix.target_arch != 'arm' || matrix.target_os != 'windows'
run: make lint
- name: Run make go.mod check-diff
if: matrix.target_arch != 'arm'