From 0fc432e5783d02ff15e48e195ec12b10e404d516 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Tue, 24 Sep 2019 21:04:35 -0400 Subject: [PATCH] Dont run CI on pr events --- .github/workflows/interop.yml | 2 +- .github/workflows/test.yml | 2 +- tonic/src/lib.rs | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index 057e083..81d2611 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -1,5 +1,5 @@ name: interop -on: [push,pull_request] +on: [push] jobs: test: runs-on: ${{ matrix.os }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f19762..99ea5e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,5 @@ name: test -on: [push,pull_request] +on: [push] jobs: test: runs-on: ${{ matrix.os }} diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 9e6cf1c..c602fa5 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -24,6 +24,9 @@ //! //! - `transport`: Enables the fully featured, batteries included client and server //! implementaiton based on [`hyper`], [`tower`] and [`tokio`]. +//! - `codegen`: Enables all the required exports and optional dependencies required +//! for [`tonic-build`]. +//! //! //! # Generic implementation //!