Skip to content

Update dependency ch.qos.logback:logback-classic to v1.4.11 - autoclosed #1101

Update dependency ch.qos.logback:logback-classic to v1.4.11 - autoclosed

Update dependency ch.qos.logback:logback-classic to v1.4.11 - autoclosed #1101

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.6.0
ports:
- 8080:8080
env:
hapi.fhir.validation.requests_enabled: 'false'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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