Skip to content

chore(deps): update github-actions #678

chore(deps): update github-actions

chore(deps): update github-actions #678

name: validate-fhir-resources
on:
pull_request:
branches: [master]
push:
branches: [master]
permissions: read-all
jobs:
validate-fhir-resource:
name: Validate FHIR resources
runs-on: ubuntu-22.04
container: ghcr.io/miracum/ig-build-tools:v2.1.10@sha256:c73bf8fa86091170a2f3bcb4820c9a6b611da4232bf9fbf7f1aa36230dc8b876
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Restore FHIR package dependencies
run: |
fhir restore
- name: Validate generated FHIR resources
# TODO: switch to 'xargs' or for loop so if any validation fails, the entire command fails.
# currently not done since we get false errors like:
# 'error: Code 'C72.0' from system 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' does not exist in the value set 'ICD10GM' (http://fhir.de/ValueSet/bfarm/icd-10-gm)'
run: |
find src/test/java/snapshots -name "*.fhir.json" -exec echo "Validating: {}" \; -exec fhir validate --verbose --fail "{}" \;