Skip to content

Commit 8a0880d

Browse files
committed
try bash on win
Signed-off-by: Frederic BIDON <[email protected]>
1 parent 4299bda commit 8a0880d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/go-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ jobs:
3737
go_version: ['oldstable', 'stable' ]
3838

3939
steps:
40-
- name: Run unit tests
41-
uses: actions/setup-go@v5
42-
shell: bash
40+
- uses: actions/setup-go@v5
4341
with:
4442
go-version: '${{ matrix.go_version }}'
4543
check-latest: true
4644
cache: true
4745

4846
- uses: actions/checkout@v4
49-
- run: go test -v -race -coverprofile="coverage-${{ matrix.os }}.${{ matrix.go_version }}.out" -covermode=atomic -coverpkg=$(go list)/... ./...
47+
- name: Run unit tests
48+
shell: bash
49+
run: go test -v -race -coverprofile="coverage-${{ matrix.os }}.${{ matrix.go_version }}.out" -covermode=atomic -coverpkg=$(go list)/... ./...
5050

5151
- name: Upload coverage to codecov
5252
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)