Skip to content

Use flush_ts and collection_name when getting flush state #794

Use flush_ts and collection_name when getting flush state

Use flush_ts and collection_name when getting flush state #794

Workflow file for this run

name: Code checker on pull request
on:
pull_request:
branches:
- master
jobs:
code-lint:
name: Code lint check
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.11]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: check pyproject.toml install
run: |
pip install -e .
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run pylint
shell: bash
run: |
make lint