Skip to content

Replace REST and RabbitMQ with gRPC #2

Replace REST and RabbitMQ with gRPC

Replace REST and RabbitMQ with gRPC #2

Workflow file for this run

name: E2E Tests
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Install Rust stable toolchain
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: Run E2E tests
run: cd e2e-tests && cargo test
env:
RUST_LOG: info