Skip to content

feat(example): add the bge embedding example #118

feat(example): add the bge embedding example

feat(example): add the bge embedding example #118

Workflow file for this run

name: lint
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tools
run: |
pip install -U pip setuptools
pip install black ruff
- name: Lint
run: |
ruff .
black --check .