forked from MIT-LCP/mimic-code
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (25 loc) · 729 Bytes
/
sqlite.yml
File metadata and controls
32 lines (25 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: sqlite demo db build
on:
pull_request_review:
types: [submitted]
jobs:
mimic-iv-sqlite:
# only run if PR is approved
if: github.event.review.state == 'approved'
runs-on: ubuntu-20.04
container: python:3.10
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Python dependencies
run: |
pip install pandas
- name: Download demo data
uses: ./.github/actions/download-demo
- name: Load icu/hosp data into SQLite
run: |
echo "Running SQLite build."
python ${BUILDCODE_PATH}/import.py
echo `md5sum mimic4.db`
env:
BUILDCODE_PATH: mimic-iv/buildmimic/sqlite