Skip to content

Commit 07cde26

Browse files
Specify bash shell for all CI workflow steps
1 parent a605242 commit 07cde26

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ jobs:
2727
go-version-file: go.mod
2828

2929
- name: Run tests with race detector and coverage
30+
shell: bash
3031
run: go test -v -short -race -coverprofile=coverage.out -covermode=atomic -count=1 ./...
3132

3233
- name: Print coverage summary
3334
if: success()
35+
shell: bash
3436
run: go tool cover -func=coverage.out
3537

3638
- name: Vet
39+
shell: bash
3740
run: go vet ./...
3841

3942
- name: Upload coverage

0 commit comments

Comments
 (0)