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