Skip to content

Commit d34f1a4

Browse files
author
Roberto Sora
committed
test using shell as default shell
1 parent 7b1ece2 commit d34f1a4

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/test.yaml

+13-12
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,23 @@ jobs:
2828
go-version: '1.13'
2929

3030
- name: Install Go deps
31-
if: matrix.operating-system != 'windows-2019'
31+
# if: matrix.operating-system != 'windows-2019'
3232
run: |
3333
go get github.com/golangci/govet
3434
go get golang.org/x/lint/golint
3535
go get github.com/golang/protobuf/protoc-gen-go
36-
37-
- name: Install Go deps on windows
38-
# since 10/23/2019 pwsh is the default shell
39-
# on Windows, but pwsh fails to install protoc-gen-go
40-
# so we force cmd as default shell for this task
41-
if: matrix.operating-system == 'windows-2019'
42-
run: |
43-
go get github.com/golangci/govet
44-
go get golang.org/x/lint/golint
45-
go get github.com/golang/protobuf/protoc-gen-go
46-
shell: cmd
36+
shell: shell
37+
38+
# - name: Install Go deps on windows
39+
# # since 10/23/2019 pwsh is the default shell
40+
# # on Windows, but pwsh fails to install protoc-gen-go
41+
# # so we force cmd as default shell for this task
42+
# if: matrix.operating-system == 'windows-2019'
43+
# run: |
44+
# go get github.com/golangci/govet
45+
# go get golang.org/x/lint/golint
46+
# go get github.com/golang/protobuf/protoc-gen-go
47+
# shell: cmd
4748

4849
- name: Install Taskfile
4950
uses: Arduino/actions/setup-taskfile@master

0 commit comments

Comments
 (0)