Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devemlight committed Feb 10, 2024
1 parent 8b93cdd commit 1b0dc88
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/go.yml → .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ on:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: ^1.21

- name: Lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3

- name: Build
run: make build
Expand All @@ -28,4 +28,6 @@ jobs:
run: go test -race -coverprofile=coverage.out -covermode=atomic -tags test ./...

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

<p align="center">
<a href="https://github.com/devemio/docker-color-output/actions/workflows/go.yml"><img src="https://img.shields.io/github/actions/workflow/status/devemio/docker-color-output/go.yml?branch=main"></a>
<a href="https://github.com/devemio/docker-color-output/actions/workflows/workflow.yml"><img src="https://img.shields.io/github/actions/workflow/status/devemio/docker-color-output/workflow.yml?branch=main"></a>
<a href="https://codecov.io/gh/devemio/docker-color-output"><img src="https://img.shields.io/codecov/c/gh/devemio/docker-color-output" alt="Coverage"></a>
<a href="https://github.com/devemio/docker-color-output/releases"><img src="https://img.shields.io/github/downloads/devemio/docker-color-output/total?color=brightgreen" alt="Downloads"></a>
<a href="https://github.com/devemio/docker-color-output/releases"><img src="https://img.shields.io/github/v/release/devemio/docker-color-output" alt="Release"></a>
Expand All @@ -13,7 +13,7 @@

## 👨‍💻 Installation

This package enhances the Docker output experience by employing a pipeline mechanism. With this feature, users have
This package enhances the Docker output experience by employing a pipeline mechanism. With this feature, you have
the ability to customize and apply various color schemes to the output generated by Docker commands. This improves
the readability and visual appeal of the output.

Expand Down

0 comments on commit 1b0dc88

Please sign in to comment.