Skip to content

Commit 56e3126

Browse files
authored
Merge pull request #380 from kianmeng/fix-badges-in-readme
Update badges in readme
2 parents 5ee86be + 6dbcbd3 commit 56e3126

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# gRPC Elixir
22

3+
[![GitHub CI](https://github.com/elixir-grpc/grpc/actions/workflows/ci.yml/badge.svg)](https://github.com/elixir-grpc/grpc/actions/workflows/ci.yml)
34
[![Hex.pm](https://img.shields.io/hexpm/v/grpc.svg)](https://hex.pm/packages/grpc)
4-
[![Travis Status](https://app.travis-ci.com/elixir-grpc/grpc.svg?branch=master)](https://app.travis-ci.com/elixir-grpc/grpc)
5-
[![GitHub actions Status](https://github.com/elixir-grpc/grpc/workflows/CI/badge.svg)](https://github.com/elixir-grpc/grpc/actions)
5+
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/grpc/)
66
[![License](https://img.shields.io/hexpm/l/grpc.svg)](https://github.com/elixir-grpc/grpc/blob/master/LICENSE.md)
7-
[![Last Updated](https://img.shields.io/github/last-commit/elixir-grpc/grpc.svg)](https://github.com/elixir-grpc/grpc/commits/master)
87
[![Total Download](https://img.shields.io/hexpm/dt/grpc.svg)](https://hex.pm/packages/elixir-grpc/grpc)
8+
[![Last Updated](https://img.shields.io/github/last-commit/elixir-grpc/grpc.svg)](https://github.com/elixir-grpc/grpc/commits/master)
99

1010
An Elixir implementation of [gRPC](http://www.grpc.io/).
1111

@@ -100,7 +100,7 @@ We will use this module [in the gRPC server startup section](#start-application)
100100

101101
### **HTTP Transcoding**
102102

103-
1. Adding [grpc-gateway annotations](https://cloud.google.com/endpoints/docs/grpc/transcoding) to your protobuf file definition:
103+
1. Adding [grpc-gateway annotations](https://cloud.google.com/endpoints/docs/grpc/transcoding) to your protobuf file definition:
104104

105105
```protobuf
106106
import "google/api/annotations.proto";
@@ -154,7 +154,7 @@ mix protobuf.generate \
154154
3. Enable http_transcode option in your Server module
155155
```elixir
156156
defmodule Helloworld.Greeter.Server do
157-
use GRPC.Server,
157+
use GRPC.Server,
158158
service: Helloworld.Greeter.Service,
159159
http_transcode: true
160160

0 commit comments

Comments
 (0)