added msg in grpc #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |