Skip to content

Merge pull request #29 from MIT-LCP/pr/mimiciv-full-datasets #19

Merge pull request #29 from MIT-LCP/pr/mimiciv-full-datasets

Merge pull request #29 from MIT-LCP/pr/mimiciv-full-datasets #19

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[test]'
- name: Run tests
run: pytest -v