Skip to content

Update quickstart.md (#108) #1

Update quickstart.md (#108)

Update quickstart.md (#108) #1

Workflow file for this run

name: Test Cases
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/[email protected]
with:
version: latest
- name: Install dependencies JB lib
working-directory: ./jb-lib
run: poetry install --with test
- name: Test JB lib
working-directory: ./jb-lib
run: poetry run pytest
- name: Install dependencies channel
working-directory: ./channel
run: poetry install --with test
- name: Test channel with pytest
working-directory: ./channel
run: poetry run pytest