Skip to content

changed EmbeddingsGeneratorProvider env variables #1

changed EmbeddingsGeneratorProvider env variables

changed EmbeddingsGeneratorProvider env variables #1

Workflow file for this run

name: Type checks
on:
pull_request:
branches: [main]
paths:
- "apps/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
#-------------------------------------#
# Check out repo and set up Python #
#-------------------------------------#
- name: Check out the repository
uses: actions/checkout@v3
working-directory: ./apps/semantic_search

Check failure on line 23 in .github/workflows/type-checks.yml

View workflow run for this annotation

GitHub Actions / Type checks

Invalid workflow file

The workflow is not valid. .github/workflows/type-checks.yml (Line: 23, Col: 9): Unexpected value 'working-directory' .github/workflows/type-checks.yml (Line: 38, Col: 9): Unexpected value 'with'
#---------------------------#
# Set-up python #
#---------------------------#
- name: Set up Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.11"
#----------------------------------------#
# Install & configure Poetry #
#----------------------------------------#
- run: pipx install poetry
with:
cache: "poetry"
- run: poetry install
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
#----------------------------------------#
# Run type checks #
#----------------------------------------#
- uses: jakebailey/pyright-action@v1