We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46bff4b commit 4815e1bCopy full SHA for 4815e1b
1 file changed
.github/workflows/golang-bindings.yml
@@ -72,7 +72,7 @@ jobs:
72
73
- name: Start sqld server
74
run: |
75
- RUST_LOG=trace ./target/release/sqld --http-listen-addr 127.0.0.1:8080 --grpc-listen-addr 127.0.0.1:5001 &
+ ./target/release/sqld --http-listen-addr 127.0.0.1:8080 --grpc-listen-addr 127.0.0.1:5001 &
76
# Wait for server to be ready
77
for i in {1..30}; do
78
if curl -s http://127.0.0.1:8080/health > /dev/null 2>&1; then
@@ -87,7 +87,6 @@ jobs:
87
88
- name: Run go-libsql tests
89
working-directory: go-libsql
90
- run: go test -v -count=1 -run TestAutoSync ./... 2>&1 | head -100
+ run: go test -v -count=1 ./...
91
env:
92
LIBSQL_PRIMARY_URL: "http://127.0.0.1:8080"
93
- RUST_LOG: "trace"
0 commit comments