Skip to content

🎨 Make search consistent with the lamindb implementation #349

🎨 Make search consistent with the lamindb implementation

🎨 Make search consistent with the lamindb implementation #349

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: ".github/workflows/build.yml"
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: install Python deps
run: |
python -m pip install --upgrade pip
pip install -U laminci
- run: nox -s lint
- run: nox -s build
- uses: codecov/codecov-action@v2
if: matrix.python-version == '3.12'
with:
token: ${{ secrets.CODECOV_TOKEN }}