Add ilike_search for name and description #1744
This file contains hidden or 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: 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 |