Skip to content

Commit

Permalink
fix other CI
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Apr 19, 2022
1 parent 88b71f3 commit facf79f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ jobs:
lint:
working_directory: ~/reviewdog
docker:
- image: circleci/golang:1.17
- image: circleci/golang:1.18
steps:
- checkout
- run:
name: System information
command: 'echo "Golang $(go version)"'
- run: 'curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b $(go env GOPATH)/bin'
- run: '( cd linters && go get golang.org/x/lint/golint )'
- run: go install golang.org/x/lint/golint@latest
- run:
command: |-
set +o pipefail
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install linters
run: '( cd linters && go get golang.org/x/lint/golint )'
run: go install golang.org/x/lint/golint@latest

- name: Setup reviewdog
# uses: reviewdog/action-setup@v1
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
run: go mod download

- name: Install linters
run: '( cd linters && go get golang.org/x/lint/golint )'
run: go install golang.org/x/lint/golint@latest

- name: Setup reviewdog
# uses: reviewdog/action-setup@v1
Expand Down

0 comments on commit facf79f

Please sign in to comment.