Skip to content

Add ilike_search for name and description #1744

Add ilike_search for name and description

Add ilike_search for name and description #1744

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
enable-cache: true
- name: Setup python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Check requirements
run: make check-deps
- name: Install requirements
run: make install
- name: Run linters
run: make lint
- name: Run tests
run: make test-docker
- name: Run pip-audit
run: make pip-audit
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: openbraininstitute/entitycore
fail_ci_if_error: false
files: ./coverage/coverage.xml
flags: pytest
verbose: true
- name: Cleanup
if: ${{ always() }}
run: |
make destroy