feat: Added FTS Rebuild command #4
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
paths: | |
- chroma_ops/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- chroma_ops/** | |
jobs: | |
test: | |
runs-on: [ "ubuntu-latest" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
set -e | |
python -m pip install --upgrade pip | |
curl -sSL https://install.python-poetry.org | python3 - | |
# - name: Lint with flake8 | |
# run: | | |
# set -e | |
# poetry update | |
# pre-commit run --from-ref HEAD~1 --to-ref HEAD | |
- name: Run tests | |
run: | | |
set -e | |
poetry update | |
poetry run pytest |