This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
build(deps): update module github.com/keptn/go-utils to v0.20.4 #149
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
name: reviewdog | |
on: [pull_request] | |
jobs: | |
reviewdog: | |
name: reviewdog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code. | |
uses: actions/checkout@v3.0.2 | |
- name: Set up Go | |
uses: actions/setup-go@v3.2.1 | |
with: | |
go-version-file: "go.mod" | |
id: go | |
- name: Install linters | |
run: "( mkdir linters && cd linters && go get golang.org/x/lint/golint )" | |
- uses: reviewdog/action-setup@v1.0.3 | |
with: | |
reviewdog_version: latest | |
- name: Run reviewdog | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
reviewdog -reporter=github-pr-review |