Try new githubactions

This commit is contained in:
Lucio Franco
2019-09-01 12:48:35 -04:00
parent 60e6d5df08
commit 420ca8484a
+14 -10
View File
@@ -1,15 +1,19 @@
name: Rust
name: Test Rust project
on: [push]
jobs:
build:
runs-on: ubuntu-latest
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest]
rust: [nightly]
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- uses: hecrj/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose
run: cargo test --all --verbose
- name: Run interop tests
run: ./tonic-interop/test.sh