Skip to content

adding helper for json loading #105

adding helper for json loading

adding helper for json loading #105

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
black-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Run Black
run: |
pipx run black --check .
test:
needs:
- black-format
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Python Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run Tests with Pytest
run: |
pytest --verbose