Skip to content

feat: Print chroma version with every command #100

feat: Print chroma version with every command

feat: Print chroma version with every command #100

Workflow file for this run

name: Test
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
paths:
- chroma_ops/**
pull_request:
paths:
- chroma_ops/**
jobs:
test:
runs-on: [ "ubuntu-latest" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
set -e
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
set -e
poetry update --with dev
- name: Lint
run: |
set -e
make lint
- name: Run tests
run: |
set -e
poetry run pytest -n auto