From 13831848b72c76620b8edc259137ecd23a92668d Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Mon, 14 Oct 2024 18:50:07 +0200 Subject: [PATCH] ci: install libpcre3 before running tests --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43f3cc15f..fc0ac57f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,6 +109,9 @@ jobs: - name: Run tests run: | + sudo apt-get update + sudo apt-get install -y libpcre3 libpcre3-dev + postgres_enabled=0 if [ ${{ runner.os }} == "Linux" ]; then sudo docker run --rm -d -e POSTGRES_PASSWORD=test123 -p 5432:5432 postgres:15.4-alpine3.18