Update quickstart.md (#108) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |