Skip to content

Update dependency ca.uhn.hapi.fhir:hapi-fhir-structures-r4 to v6.10.2 #1224

Update dependency ca.uhn.hapi.fhir:hapi-fhir-structures-r4 to v6.10.2

Update dependency ca.uhn.hapi.fhir:hapi-fhir-structures-r4 to v6.10.2 #1224

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
pull_request:
jobs:
build:
if: github.repository == 'nr23730/fhirspark'
services:
hapiserver:
image: hapiproject/hapi:v6.8.0
ports:
- 8080:8080
env:
hapi.fhir.validation.requests_enabled: 'false'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
- name: Run first query on FHIR server
run: sleep 45 && curl http://localhost:8080/fhir/Patient
- name: Build with Maven
run: mvn -B -Dfhir.test.url="http://localhost:8080/fhir/" package --file pom.xml