Skip to content

Commit

Permalink
ci: add docker shim for test in pack action
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneD authored Sep 10, 2024
1 parent fa2fdc4 commit 0283f01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0283f01

Please sign in to comment.