Skip to content

Bump google.golang.org/grpc from 1.55.0 to 1.56.3 (#649) #165

Bump google.golang.org/grpc from 1.55.0 to 1.56.3 (#649)

Bump google.golang.org/grpc from 1.55.0 to 1.56.3 (#649) #165

Workflow file for this run

name: E2E
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: E2E
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Starting dependencies
run: |
docker-compose up -d
sleep 10
working-directory: ./examples/
- name: Starting service
run: |
go build .
nohup ./service &
working-directory: ./examples/service
- name: Starting client
run: |
sleep 10
go run main.go
working-directory: ./examples/client