CI #26
This file contains 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: CI | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Sushi | |
run: sudo npm install -g fsh-sushi | |
- name: check out Git repository | |
uses: actions/checkout@v4 | |
- name: Build resources using Sushi | |
run: | | |
cd MiabisOnFHIR | |
sushi build | |
- name: Move sushi output different folder | |
run: | | |
mkdir sushi-output | |
mkdir sushi-output/instances | |
mkdir sushi-output/resources | |
cp -R MiabisOnFHIR/fsh-generated/resources sushi-output | |
cd sushi-output/resources | |
mv *Instance.json ../instances | |
- name: Download FHIR validator | |
run: wget https://github.com/hapifhir/org.hl7.fhir.core/releases/latest/download/validator_cli.jar -O validator_cli.jar | |
- name: Run FHIR validator | |
run: java -jar validator_cli.jar -ig sushi-output/resources -version 4.0.1 -extension http://example/org/ -allow-example-urls true sushi-output/instances | |