Skip to content

Integration tests: gRPC endpoint tests #15

Integration tests: gRPC endpoint tests

Integration tests: gRPC endpoint tests #15

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
PROTOC_VERSION: 3.25.1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protoc
uses: taiki-e/install-action@v2
with:
tool: protoc@${{ env.PROTOC_VERSION }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose