Skip to content

Commit

Permalink
Remove CodeCoverage due to many failures
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Nov 2, 2023
1 parent 7a5888a commit 5ebf9dc
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18

- name: Build
run: go build -v ./...

- name: Tests with coverage
run: go test -race -v -count=1 -coverprofile=coverage.out ./...
- name: Upload Code Coverage
uses: codecov/codecov-action@v1
with:
name: codecov
fail_ci_if_error: true
run: go test -race -v -count=1 ./...
#run: go test -race -v -count=1 -coverprofile=coverage.out ./...

#- name: Upload Code Coverage
# uses: codecov/codecov-action@v1
# with:
# name: codecov
# fail_ci_if_error: true

golangci:
name: lint
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5ebf9dc

Please sign in to comment.