Skip to content

Commit 4814d36

Browse files
Remove codecov (#65)
1 parent f22b203 commit 4814d36

File tree

2 files changed

+39
-43
lines changed

2 files changed

+39
-43
lines changed

.github/workflows/ci.yaml

Lines changed: 39 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -10,64 +10,61 @@ jobs:
1010
container:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: Install Go
14-
uses: actions/setup-go@v3
15-
with:
16-
go-version: '1.17'
13+
- name: Install Go
14+
uses: actions/setup-go@v3
15+
with:
16+
go-version: '1.17'
1717

18-
- name: Checkout code
19-
uses: actions/checkout@v3
18+
- name: Checkout code
19+
uses: actions/checkout@v3
2020

21-
- name: Test with code coverage
22-
run: go test ./... -race -covermode=atomic -coverprofile=coverage.txt
21+
- name: Test with code coverage
22+
run: go test ./... -race -covermode=atomic -coverprofile=coverage.txt
2323

24-
- name: Build binaries and Docker image with GoReleaser
25-
uses: goreleaser/goreleaser-action@v2
26-
with:
27-
args: release --snapshot --skip-publish
24+
- name: Build binaries and Docker image with GoReleaser
25+
uses: goreleaser/goreleaser-action@v2
26+
with:
27+
args: release --snapshot --skip-publish
2828

29-
- name: Make example directory writable for all users
30-
run: chmod o+w example
29+
- name: Make example directory writable for all users
30+
run: chmod o+w example
3131

32-
- name: Run the built Docker image
33-
run: cd example && docker run --workdir /workspace --mount type=bind,source="$(pwd)",target=/workspace ghcr.io/patrickhoefler/cloudbuildgraph:0.0.0
34-
35-
- name: Upload code coverage
36-
uses: codecov/codecov-action@v2
32+
- name: Run the built Docker image
33+
run: cd example && docker run --workdir /workspace --mount type=bind,source="$(pwd)",target=/workspace ghcr.io/patrickhoefler/cloudbuildgraph:0.0.0
3734

3835
native:
3936
strategy:
4037
matrix:
4138
os: [macos-latest, ubuntu-latest, windows-latest]
4239
runs-on: ${{ matrix.os }}
4340
steps:
44-
- name: Install Go
45-
uses: actions/setup-go@v3
46-
with:
47-
go-version: '1.17'
41+
- name: Install Go
42+
uses: actions/setup-go@v3
43+
with:
44+
go-version: '1.17'
4845

49-
- name: Checkout code
50-
uses: actions/checkout@v3
46+
- name: Checkout code
47+
uses: actions/checkout@v3
5148

52-
# Some tests are currently broken on Windows, disable for now
53-
- name: Test
54-
if: runner.os != 'Windows'
55-
run: go test ./...
49+
# Some tests are currently broken on Windows, disable for now
50+
- name: Test
51+
if: runner.os != 'Windows'
52+
run: go test ./...
5653

57-
- name: Build
58-
run: go build
54+
- name: Build
55+
run: go build
5956

60-
- name: '[macOS] Install graphviz'
61-
if: runner.os == 'macOS'
62-
run: brew install graphviz
57+
- name: '[macOS] Install graphviz'
58+
if: runner.os == 'macOS'
59+
run: brew install graphviz
6360

64-
- name: '[Ubuntu] Install graphviz'
65-
if: runner.os == 'Linux'
66-
run: sudo apt install --no-install-recommends -y graphviz
61+
- name: '[Ubuntu] Install graphviz'
62+
if: runner.os == 'Linux'
63+
run: sudo apt install --no-install-recommends -y graphviz
6764

68-
- name: '[Windows] Install graphviz'
69-
if: runner.os == 'Windows'
70-
run: choco install graphviz --no-progress
65+
- name: '[Windows] Install graphviz'
66+
if: runner.os == 'Windows'
67+
run: choco install graphviz --no-progress
7168

72-
- name: Run the binary
73-
run: cd example && ../cloudbuildgraph
69+
- name: Run the binary
70+
run: cd example && ../cloudbuildgraph

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Go Report Card](https://goreportcard.com/badge/github.com/patrickhoefler/cloudbuildgraph)](https://goreportcard.com/report/github.com/patrickhoefler/cloudbuildgraph)
44
[![Maintainability](https://api.codeclimate.com/v1/badges/e6b4c7aef80d06332d19/maintainability)](https://codeclimate.com/github/patrickhoefler/cloudbuildgraph/maintainability)
5-
[![codecov](https://codecov.io/gh/patrickhoefler/cloudbuildgraph/branch/main/graph/badge.svg)](https://codecov.io/gh/patrickhoefler/cloudbuildgraph)
65

76
`cloudbuildgraph` visualizes your Google Cloud Build pipelines.
87

0 commit comments

Comments
 (0)