22 lines
521 B
YAML
22 lines
521 B
YAML
name: interop
|
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
rust: [beta]
|
|
|
|
steps:
|
|
- uses: hecrj/setup-rust-action@master
|
|
with:
|
|
rust-version: ${{ matrix.rust }}
|
|
- uses: actions/checkout@master
|
|
- name: Install rustfmt
|
|
run: rustup component add rustfmt
|
|
- name: Run interop tests
|
|
run: ./tonic-interop/test.sh
|
|
- name: Run interop tests with tls
|
|
run: ./tonic-interop/test.sh --use_tls
|