Skip to content

Commit

Permalink
develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-M-C committed Apr 20, 2022
1 parent 8397e00 commit b9b9e39
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/go_1.16_above.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:
go-version: ${{ matrix.GO_VER }}
id: go

- name: Get Dependencies
run: |
echo GO_VER = ${{ matrix.GO_VER }}
go get golang.org/x/tools/cmd/cover
go install github.com/mattn/goveralls || go get github.com/mattn/goveralls
go get .
- name: Go test
run: |
go test -v -failfast -cover -covermode=atomic -coverprofile=coverage.out
7 changes: 7 additions & 0 deletions .github/workflows/go_1.16_before.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:
go-version: ${{ matrix.GO_VER }}
id: go

- name: Get Dependencies
run: |
echo GO_VER = ${{ matrix.GO_VER }}
go get golang.org/x/tools/cmd/cover
go install github.com/mattn/goveralls || go get github.com/mattn/goveralls
go get .
- name: Go test
run: |
go test -v -failfast -cover -covermode=atomic -coverprofile=coverage.out

0 comments on commit b9b9e39

Please sign in to comment.