Skip to content

Commit

Permalink
chore: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed Jun 23, 2023
1 parent c954283 commit 2731c16
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# https://docs.codecov.com/docs/codecov-yaml
coverage:
status:
patch: off
ignore:
- "messages"
- "test"
- "examples"
- "internal"
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN}}
- name: Download latest earthly
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.1/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
- uses: earthly/actions/setup-earthly@v1
with:
version: v0.7.9
- name: Earthly version
run: earthly --version
- name: Run Linter and Tests
Expand All @@ -37,3 +38,9 @@ jobs:
FORCE_COLOR: 1
run: |
earthly -P -use-inline-cache --save-inline-cache --strict --push +test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out # optional
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
11 changes: 9 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN}}
- name: Download latest earthly
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.1/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
- uses: earthly/actions/setup-earthly@v1
with:
version: v0.7.9
- name: Earthly version
run: earthly --version
- name: Run Linter and Tests
Expand All @@ -41,3 +42,9 @@ jobs:
FORCE_COLOR: 1
run: |
earthly -P -use-inline-cache --save-inline-cache --strict --push +test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out # optional
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Go-Akt
[![build](https://img.shields.io/github/actions/workflow/status/Tochemey/goakt/build.yml?branch=main)](https://github.com/Tochemey/goakt/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/Tochemey/goakt/branch/main/graph/badge.svg?token=J0p9MzwSRH)](https://codecov.io/gh/Tochemey/goakt)
[![Go Report Card](https://goreportcard.com/badge/github.com/tochemey/goakt)](https://goreportcard.com/report/github.com/tochemey/goakt)

Minimal actor framework with goodies to build reactive and distributed system in golang using _**protocol buffers as actor messages**_.
Expand Down

0 comments on commit 2731c16

Please sign in to comment.