free of buf array in local_result_v2 struct #170
Workflow file for this run
This file contains 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: Pull-CI | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
env: | |
PYTHON_VERSIONS: "3.11" | |
runs-on: gh-64c | |
steps: | |
- name: Clone chDB repository | |
uses: actions/checkout@v2 | |
with: | |
repository: "chdb-io/chdb" | |
ref: "refs/pull/${{ github.event.pull_request.number }}/merge" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install flake8 | |
run: python -m pip install flake8 | |
- name: Run flake8 on chdb directory | |
run: cd chdb && flake8 . | |