Skip to content

Commit

Permalink
ci: Add tags to codecov reports (#121)
Browse files Browse the repository at this point in the history
* Add tags to codecov reports

* Trigger CI when workflows definitions are updated

* Trigger CI

* Fix TS workflow

* Fix codecov tags => flags
  • Loading branch information
romac authored Nov 29, 2022
1 parent 4232e6c commit 2cff798
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- go/**
- .github/workflows/go.yml
push:
branches:
- master
Expand Down Expand Up @@ -58,5 +59,6 @@ jobs:
uses: codecov/codecov-action@v3
with:
files: go/coverage.txt
flags: go
fail_ci_if_error: true

2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- rust/**
- .github/workflows/rust.yml
push:
branches:
- master
Expand Down Expand Up @@ -97,4 +98,5 @@ jobs:
uses: codecov/codecov-action@v3
with:
files: rust/lcov.info
flags: rust
fail_ci_if_error: true
1 change: 1 addition & 0 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- js/**
- .github/workflows/typescript.yml
push:
branches:
- master
Expand Down
1 change: 1 addition & 0 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ format:
$(golangci_lint_cmd) run --fix

.PHONY: format

1 change: 1 addition & 0 deletions rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ Unless you modify the protobuf file, you can ignore this step.
## MSRV

The minimum supported Rust version (MSRV) is 1.56.1.

0 comments on commit 2cff798

Please sign in to comment.