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
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: clone synthea | |
run: git clone https://github.com/synthetichealth/synthea.git | |
- name: run synthea | |
run: | | |
cd synthea | |
./run_synthea -p 2 | |
ls -la output/fhir | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: load data | |
run: | | |
pwd | |
git clone https://github.com/hansenms/FhirLoader.git | |
ls -la | |
cd FhirLoader | |
dotnet run -- \ | |
--client-secret ${{ Secrets.CLIENTSECRET}} \ | |
--client-id ${{Secrets.CLIENTID}} \ | |
--input-folder ../synthea/output/fhir/ \ | |
--authority ${{ Secrets.AUTHORITY}} \ | |
--fhir-server-url ${{ Secrets.FHIRAZUREAPI}} \ | |
--max-degree-of-parallelism 14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment