We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0af67c commit 1dd49faCopy full SHA for 1dd49fa
.github/workflows/build_wheels.yml
@@ -120,6 +120,12 @@ jobs:
120
sudo rm -f dist/*-linux_x86_64.whl
121
ls -lh dist
122
shell: bash
123
+ - name: Run tests
124
+ run: |
125
+ python3 -m pip install dist/*.whl
126
+ python3 -c "import chdb; res = chdb.query('select 1112222222,555', 'CSV'); print(res.get_memview().tobytes())"
127
+ make test
128
+ continue-on-error: false
129
- uses: actions/upload-artifact@v3
130
with:
131
path: ./dist/*.whl
0 commit comments