Skip to content

LLMstudio-core 1.0.3 LLMstudio-tracker 1.1.0 LLMstudio 1.0.3 LLMstudio-proxy 1.0.5 #1

LLMstudio-core 1.0.3 LLMstudio-tracker 1.1.0 LLMstudio 1.0.3 LLMstudio-proxy 1.0.5

LLMstudio-core 1.0.3 LLMstudio-tracker 1.1.0 LLMstudio 1.0.3 LLMstudio-proxy 1.0.5 #1

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
# Install Poetry
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
# Build and publish package to PyPI
- name: Install llmstudio-core
working-directory: ./libs/core
run: |
poetry install
# Build and publish package to PyPI
- name: Run unit-tests
run: |
make unit-tests