From e9479d943604bfb3c98c7aeaefd25da254b34f53 Mon Sep 17 00:00:00 2001 From: Tiago Mota Date: Fri, 23 Aug 2024 13:40:23 +0100 Subject: [PATCH] Install docker-compose --- .github/workflows/scala.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 6c7e7ab..4427f5a 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -18,12 +18,15 @@ jobs: scala: [ 2.13.14, 3.3.3 ] steps: - uses: actions/checkout@v4 + - name: Install Compose + uses: ndeloof/install-compose-action@v0.0.1 + with: + legacy: true # will also install in PATH as `docker-compose` + - run: docker-compose --version - name: Setup Scala and Java uses: coursier/setup-action@v1 with: jvm: ${{matrix.java}} - - name: Check docker compose - run: docker-compose --version - name: Start Postgres run: sh ./scripts/launch-postgres.sh - name: Run tests