Skip to content

Commit a230b53

Browse files
replace code climate with code cov
1 parent 15ce08a commit a230b53

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
branches: [ "main" ]
88

99
jobs:
10-
1110
build:
1211
runs-on: ubuntu-latest
1312
timeout-minutes: 50
@@ -25,15 +24,14 @@ jobs:
2524
- name: Build
2625
run: make build
2726

27+
- name: test
28+
run: make test
29+
2830
#Code Climate
29-
- name: Run Coverage
30-
uses: paambaati/codeclimate-action@v2.6.0
31+
- name: Upload coverage reports to Codecov
32+
uses: codecov/codecov-action@v3
3133
env:
32-
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
33-
with:
34-
coverageCommand: make test
35-
coverageLocations: ${{github.workspace}}/cover.out:gocov
36-
prefix: github.com/scott-the-programmer/terraform-provider-minikube
34+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3735

3836
# temporarily disabled due to limited gh runner resources
3937
# - name: Acceptance

0 commit comments

Comments
 (0)