From 0283f01a5f0dfed0df7eba0e8857bc5591ea1b03 Mon Sep 17 00:00:00 2001 From: Arne Dumarey Date: Tue, 10 Sep 2024 11:14:23 +0200 Subject: [PATCH] ci: add docker shim for test in pack action --- .github/workflows/pack.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml index 023d8ae..9194b0e 100644 --- a/.github/workflows/pack.yml +++ b/.github/workflows/pack.yml @@ -77,7 +77,10 @@ jobs: - name: Run all tests if: ${{ inputs.test-project != '' && inputs.test-project != 'none' }} - run: dotnet test test/${{ inputs.test-project }} --no-build + shell: bash + run: | + ln -s /usr/libexec/docker/cli-plugins/docker-compose /usr/local/bin/docker-compose + dotnet test test/${{ inputs.test-project }} --no-build - name: Dotnet restore shell: bash