BAH-4336 | Refactor. HL7 Service to extract out mappers for each segment #50
Workflow file for this run
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: Validate PR | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - "**.md" | |
| jobs: | |
| build: | |
| name: Test & Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Java 8 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "corretto" | |
| java-version: "8" | |
| - name: Run Unit Tests | |
| run: ./mvnw --no-transfer-progress clean test | |
| - name: Package | |
| run: ./mvnw --no-transfer-progress clean package -DskipTests |