Files
tonic/.github/workflows/rust.yml
T
2019-09-01 12:48:35 -04:00

20 lines
427 B
YAML

name: Test Rust project
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest]
rust: [nightly]
steps:
- uses: hecrj/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --all --verbose
- name: Run interop tests
run: ./tonic-interop/test.sh