Fix missing feature_name argument in retrieve_online_documents_v2 #4762
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: linter | |
| on: [push, pull_request] | |
| jobs: | |
| lint-python: | |
| runs-on: [ubuntu-latest] | |
| env: | |
| PYTHON: 3.11 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| architecture: x64 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: | | |
| make install-python-dependencies-ci | |
| make compile-protos-go | |
| - name: Lint python | |
| run: make lint-python | |
| - name: Minimize uv cache | |
| run: uv cache prune --ci | |
| lint-go: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| id: setup-go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.22.5 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Lint go | |
| run: make lint-go | |
| - name: Minimize uv cache | |
| run: uv cache prune --ci | |
| lint-java: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Lint java | |
| run: make lint-java |