Dont run CI on pr events

This commit is contained in:
Lucio Franco
2019-09-24 21:04:35 -04:00
parent 41d0f6ac5e
commit 0fc432e578
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: interop name: interop
on: [push,pull_request] on: [push]
jobs: jobs:
test: test:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
+1 -1
View File
@@ -1,5 +1,5 @@
name: test name: test
on: [push,pull_request] on: [push]
jobs: jobs:
test: test:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
+3
View File
@@ -24,6 +24,9 @@
//! //!
//! - `transport`: Enables the fully featured, batteries included client and server //! - `transport`: Enables the fully featured, batteries included client and server
//! implementaiton based on [`hyper`], [`tower`] and [`tokio`]. //! implementaiton based on [`hyper`], [`tower`] and [`tokio`].
//! - `codegen`: Enables all the required exports and optional dependencies required
//! for [`tonic-build`].
//!
//! //!
//! # Generic implementation //! # Generic implementation
//! //!