From 87e9a297bac906065015ec1b45c3971f35273aed Mon Sep 17 00:00:00 2001 From: Basha Mougamadou Date: Thu, 22 Aug 2024 11:37:25 +0200 Subject: [PATCH] fix build and test action Install docker-compose which appears to not being installed by default anymore. --- .github/scripts/build_and_test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/build_and_test.sh b/.github/scripts/build_and_test.sh index 8aa1b2d..2798f81 100755 --- a/.github/scripts/build_and_test.sh +++ b/.github/scripts/build_and_test.sh @@ -3,6 +3,8 @@ set -x set -e +sudo curl -Lo /usr/bin/docker-compose https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64 +sudo chmod 755 /usr/bin/docker-compose go run .github/scripts/prepare/main.go sleep 20