Skip to content

Commit

Permalink
#146 Add make-dependencies target - 6
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed May 29, 2024
1 parent 085cb45 commit c0d2f76
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-test-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
go-version: ${{ matrix.go }}

- name: run go test
run: go test -v -p 1 ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
run: go test -v -p 1 -coverprofile=./cover.out -covermode=atomic -coverpkg=./... ./...

- name: Store coverage file
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
go-version: ${{ matrix.go }}

- name: run go test
run: go test -v -p 1 ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
run: go test -v -p 1 -coverprofile=./cover.out -covermode=atomic -coverpkg=./... ./...

- name: Store coverage file
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-test-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: run go test
run: |
go test -v -p 1 -coverprofile=cover -covermode=atomic -coverpkg=./... ./...
cp cover cover.out
go test -v -p 1 -coverprofile=cover.out -covermode=atomic -coverpkg=./... ./...
# cp cover cover.out
- name: Store coverage file
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit c0d2f76

Please sign in to comment.