Skip to content

fix: use the context from QueryContext instead of conn (#76) #201

fix: use the context from QueryContext instead of conn (#76)

fix: use the context from QueryContext instead of conn (#76) #201

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
services:
databend:
image: datafuselabs/databend
env:
QUERY_DEFAULT_USER: databend
QUERY_DEFAULT_PASSWORD: databend
MINIO_ENABLED: true
# options: >-
# --health-cmd "curl -fs http://localhost:8000/v1/health || exit 1"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
ports:
- 8000:8000
- 9000:9000
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.18"
- name: Unittest
run: |
make test
- name: Verify Service Running
run: |
cid=$(docker ps -a | grep databend | cut -d' ' -f1)
docker logs ${cid}
curl -v http://localhost:8000/v1/health
- name: Test
env:
# TEST_DATABEND_DSN: "databend://databend:databend@localhost:8000/default?idle_timeout=1h&presigned_url_disabled=1&sslmode=disable"
TEST_DATABEND_DSN: "databend://databend:databend@localhost:8000/default?sslmode=disable"
run: |
make ci