-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
12 additions
and
13 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 |
---|---|---|
|
@@ -22,21 +22,20 @@ jobs: | |
uses: actions/checkout@v1 | ||
|
||
- name: Run golangci-lint | ||
|
||
uses: golangci/[email protected] | ||
with: | ||
version: latest | ||
args: # optional, default is | ||
# golangci-lint working directory, default is project root | ||
working-directory: # optional | ||
# the token is used for fetching patch of a pull request to show only new issues | ||
github-token: ${{ github.token }} | ||
# if set to true and the action runs on a pull request - the action outputs only newly found issues | ||
only-new-issues: false | ||
skip-cache: false | ||
skip-pkg-cache: false | ||
skip-build-cache: false | ||
install-mode: binary | ||
version: latest | ||
args: # optional, default is | ||
# golangci-lint working directory, default is project root | ||
working-directory: # optional | ||
# the token is used for fetching patch of a pull request to show only new issues | ||
github-token: ${{ github.token }} | ||
# if set to true and the action runs on a pull request - the action outputs only newly found issues | ||
only-new-issues: false | ||
skip-cache: false | ||
skip-pkg-cache: false | ||
skip-build-cache: false | ||
install-mode: binary | ||
|
||
test: | ||
name: Test | ||
|