Skip to content

added msg in grpc

added msg in grpc #3

Workflow file for this run

name: Java build with Maven
on:
push:
branches: ["main"]
paths:
- "analytics-service/**"
- "api-gateway/**"
- "auth-service/**"
- "billing-service/**"
- "patient-service/**"
- "integration-tests/**"
jobs:
# name of the job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up jdk-21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build the application
run: mvn install
- name: Build the dependency graph
uses: advanced-security/maven-dependency-submission-action@v4