From c28f754d327eccae7347292685464270b7ccad4b Mon Sep 17 00:00:00 2001 From: etimofeeva Date: Mon, 2 Feb 2026 11:27:24 +0100 Subject: [PATCH] fix: added missing dependencies --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcdd5cbf..7c252329 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,14 @@ jobs: with: go-version: '1.21' + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y librocksdb-dev libzmq3-dev pkg-config + - name: Download dependencies run: go mod download - name: Run unit tests run: | - go test -tags 'unittest' $(go list ./... | grep -vP '^github.com/trezor/blockbook/(contrib|tests)') + go test -tags 'unittest' $(go list ./... | grep -vP '^github.com/trezor/blockbook/(contrib|tests)') \ No newline at end of file