Add more CI testing and fix R4 generation #8
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
# The goal here is to cancel older workflows when a PR is updated (because it's pointless work) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
generate: | |
name: generate | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# isodate is used by our sample templates and pytest is our runner of choice | |
pip install isodate pytest | |
- name: Cache R5 download | |
uses: actions/cache@v4 | |
with: | |
path: downloads-r5 | |
key: downloads-r5 | |
- name: Generate R5 | |
run: | | |
cp ./Default/settings.py . | |
sed -i "s|'../models|'models|g" settings.py | |
sed -i "s|'downloads'|'downloads-r5'|g" settings.py | |
sed -i "s|\(^specification_url = \)'.*'|\1'http://hl7.org/fhir/R5'|g" settings.py | |
rm -rf models | |
./generate.py | |
grep 'Generated from FHIR 5.0.0' models/account.py # sanity check | |
# FIXME: The R5 tests fail to pass currently (due to some wrong types and missing properties) | |
# - name: Test R5 | |
# run: | | |
# FHIR_UNITTEST_DATADIR=downloads-r5 pytest | |
- name: Cache R4 download | |
uses: actions/cache@v4 | |
with: | |
path: downloads-r4 | |
key: downloads-r4 | |
- name: Generate R4 | |
run: | | |
cp ./Default/settings.py . | |
sed -i "s|'../models|'models|g" settings.py | |
sed -i "s|'downloads'|'downloads-r4'|g" settings.py | |
sed -i "s|\(^specification_url = \)'.*'|\1'http://hl7.org/fhir/R4'|g" settings.py | |
rm -rf models | |
./generate.py | |
grep 'Generated from FHIR 4.0.1' models/account.py # sanity check | |
- name: Test R4 | |
run: | | |
FHIR_UNITTEST_DATADIR=downloads-r4 pytest |