Skip to content

Moved study period source from core #128

Moved study period source from core

Moved study period source from core #128

Workflow file for this run

name: CI
on: [push]
jobs:
unittest:
name: unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get library from main
run: pip install git+https://github.com/smart-on-fhir/cumulus-library.git
- name: Install linters
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run sqlfluff on jinja templates
run: |
sqlfluff lint
- name: Run black
if: success() || failure() # still run black if above checks fails
run: |
black --check --verbose .