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 1c4095b commit 758d02cCopy full SHA for 758d02c
.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
18
19
# Verify that data was actually loaded by checking row count
20
echo "Verifying demo data was loaded..."
21
- row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 1 | tr -d ' ')
+ row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 2 | head -n 1 | \grep -Eo '\d+')
22
echo "Found $row_count rows in gene table"
23
24
# Ensure we have a reasonable number of rows (gene data should have thousands)
@@ -52,4 +52,4 @@ jobs:
52
53
- name: Clean up
54
if: always()
55
- run: make down
+ run: make down
0 commit comments