Add cosine similarity tests and allow schemad data #3950
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
name: autoruff | |
on: | |
pull_request: | |
branches: | |
- master | |
- "**dev" | |
paths: | |
- "**/*.py" | |
- "pyproject.toml" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Lint with Ruff using Python 3.12.1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry using pipx | |
run: pipx install poetry && pipx ensurepath | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12.1" | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry install --no-interaction --no-root --only linting | |
- name: Run Ruff linting | |
run: poetry run ruff check . --output-format=full | |
- name: Run Ruff formatting check | |
run: poetry run ruff format --check . |