Skip to content

Commit

Permalink
config: abolish
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed Nov 28, 2024
1 parent b25413d commit 296ccc3
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 122 deletions.
92 changes: 0 additions & 92 deletions .github/workflows/coveritup.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
pull_request:
push:
tags-ignore:
- '**'
branches:
- '**'

name: "Test"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
coveritup:
strategy:
matrix:
go-version: [mod]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: kevincobain2000/action-gobrew@v2
with:
version: ${{ matrix.go-version }}
- name: Setup Node.js ${{ matrix.node-versions }}
uses: actions/setup-node@v2
with:
node-version: 20

- name: Install Tools
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
curl -sLk https://raw.githubusercontent.com/kevincobain2000/cover-totalizer/master/install.sh | sh
- run: cd api/pkg/frontend; npm install; npm run build


- run: go build
- run: go test -race -v ./... -count=1
- run: golangci-lint run ./...
31 changes: 1 addition & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
<br>
<br>
</h1>
<p align="center">
<a href="https://coveritup.app/readme?org=kevincobain2000&repo=go-progress-svg&branch=master">
<img alt="svg circle progress sample" src="https://coveritup.app/progress?org=kevincobain2000&repo=go-progress-svg&branch=master&type=coverage&theme=dark&style=bar">
</a>
</p>

<p align="center">
<img alt="svg circle progress sample" src="https://imgur.com/UOfAB33.png">
Expand All @@ -34,30 +29,6 @@

**Beautiful:** Customizable to rounded corners, different colors, and caption options.

---
## Reports from [coveritup](https://coveritup.app/readme?org=kevincobain2000&repo=go-progress-svg&branch=master)

![go-build-time](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-build-time)
![coverage](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=coverage)

![go-lint-errors](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-lint-errors)
![go-test-run-time](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-test-run-time)

![npm-install-time](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=npm-install-time)
![npm-build-time](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=npm-build-time)

![go-mod-dependencies](https://coveritup.app/badge?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-mod-dependencies)

![go-lint-errors](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-lint-errors&theme=light&line=fill&width=150&height=150&output=svg&line=fill)
![go-test-run-time](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-test-run-time&theme=light&line=fill&width=150&height=150&output=svg&line=fill)
![go-build-time](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-build-time&theme=light&line=fill&width=150&height=150&output=svg&line=fill)
![coverage](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=coverage&theme=light&line=fill&width=150&height=150&output=svg&line=fill)
![go-mod-dependencies](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=go-mod-dependencies&theme=light&line=fill&width=150&height=150&output=svg&line=fill)

![npm-install-time](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=npm-install-time&theme=light&line=fill&width=150&height=150&output=svg)
![npm-build-time](https://coveritup.app/chart?org=kevincobain2000&repo=go-progress-svg&branch=master&type=npm-build-time&theme=light&line=fill&width=150&height=150&output=svg)



## Usage

Expand Down Expand Up @@ -153,4 +124,4 @@ func main() {

## CHANGE LOG

- v1.0.0 - initial release
- **v1.0.0** - initial release

0 comments on commit 296ccc3

Please sign in to comment.