Skip to content

Commit

Permalink
Fix docker command
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed May 18, 2022
1 parent 8706c2f commit 0d74415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: dotnet build ${{ inputs.solution }} --configuration Release
- name: Start Services
if: hashFiles('docker-compose.yml') != ''
run: docker compose up -d && docker compose up ready 2>$null
run: docker compose up -d && docker compose up ready || true
- name: Run Tests
run: dotnet test ${{ inputs.solution }} --configuration Release --no-build --logger "GitHubActions;report-warnings=false"
- name: Package
Expand Down

0 comments on commit 0d74415

Please sign in to comment.