Skip to content

Sandbox testing in CI #3

Sandbox testing in CI

Sandbox testing in CI #3

Workflow file for this run

name: Smart on FHIR in JH tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12] # extend if needed
env:
JUPYTERHUB_API_TOKEN: "API_TOKEN"
CLIENT_ID: "CLIENT_ID"
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 -e .[testing]
- name: Run tests
run: |
pytest tests/