Skip to content

Commit

Permalink
WIP convert action
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Nov 22, 2024
1 parent a542328 commit e510955
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/convert.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Convert

on: push

jobs:
LoadNewCSV:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: |
cd tmp &&\
wget https://github.com/hl7au/au-fhir-test-data-utils/releases/latest/download/xls-converter.zip &&\
unzip xls-converter.zip &&\
pip install xls_converter* &&\
rm -rf xls_converter* xls-converter.zip
- run: python -m xls_converter.main https://assets.beda.software/AU%20Core%20Test%20Data_copy.xlsx testdata-csv
- run: git diff

0 comments on commit e510955

Please sign in to comment.