Skip to content

Commit

Permalink
add os name to codecov flag
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandar Stojanov <[email protected]>
  • Loading branch information
losisin committed Oct 25, 2023
1 parent 128ec0c commit 8b36e84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
flags: unittests
flags: ${{ matrix.os }}-unittests
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ ifneq (, $(findstring mingw, $(SYS)))
OS_FAMILY = windows
else ifneq(, $(findstring cygwin, $(SYS)))
OS_FAMILY = windows
else
OS_FAMILY = $(SYS)
endif

GOPATH ?= $(shell go env GOPATH)
Expand Down

0 comments on commit 8b36e84

Please sign in to comment.