Skip to content

Commit

Permalink
(ci) links updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed Aug 24, 2023
1 parent 61edf64 commit ef5a09d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,16 @@ jobs:
go tool cover -html=coverage.out -o coverage.html
gocov convert coverage.out | gocov-xml > coverage.xml
- name: Build
run: go build -ldflags '-s -w' -o main cmd/gobrew/main.go
run: |
BUILD_START=$SECONDS
go build -ldflags '-s -w' -o main cmd/gobrew/main.go
echo SCORE=$(($SECONDS-BUILD_START)) >> "$GITHUB_ENV"
# Coveritup
- uses: kevincobain2000/action-coveritup@v1
with:
type: build-time

- name: Coveritup
run: |
curl -sLk https://raw.githubusercontent.com/kevincobain2000/cover-totalizer/master/install.sh | sh
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@

# Build Status

| Branch | Status |
|:----------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| master | ![Test](https://github.com/kevincobain2000/gobrew/workflows/Test/badge.svg?branch=master) |
| Coverage | [![coveritup](https://coveritup.app/embed?org=kevincobain2000&repo=gobrew&branch=master&type=coverage)](https://coveritup.app/kevincobain2000/gobrew) |
| Binary Size | [![coveritup](https://coveritup.app/embed?org=kevincobain2000&repo=gobrew&branch=master&type=go-binary-size)](https://coveritup.app/kevincobain2000/gobrew) |
| Mod Dependencies| [![coveritup](https://coveritup.app/embed?org=kevincobain2000&repo=gobrew&branch=master&type=go-mod-dependencies)](https://coveritup.app/kevincobain2000/gobrew) |
| Go Sec Issues | [![coveritup](https://coveritup.app/embed?org=kevincobain2000&repo=gobrew&branch=master&type=go-sec-issues)](https://coveritup.app/kevincobain2000/gobrew) |
| Branch | Status |
|:----------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|
| master | ![Test](https://github.com/kevincobain2000/gobrew/workflows/Test/badge.svg?branch=master) |
| Coverage | [![coveritup](https://coveritup.app/embed/kevincobain2000/gobrew?branch=master&type=coverage)](https://coveritup.app/kevincobain2000/gobrew) |
| Binary Size | [![coveritup](https://coveritup.app/embed/kevincobain2000/gobrew?branch=master&type=go-binary-size)](https://coveritup.app/kevincobain2000/gobrew) |
| Mod Dependecies | [![coveritup](https://coveritup.app/embed/kevincobain2000/gobrew?branch=master&type=go-mod-dependencies)](https://coveritup.app/kevincobain2000/gobrew) |



Expand Down

0 comments on commit ef5a09d

Please sign in to comment.