Skip to content

Commit

Permalink
added install for docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Anderson committed Jan 10, 2025
1 parent f07936a commit 9a8254c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ jobs:
mongodb-version: '7.0'
mongodb-replica-set: test-rs
mongodb-port: 29017
- name: Install Docker using Docker's official script
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
continue-on-error: false

- name: Install Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/v2.3.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
continue-on-error: false

- name: Test
run: dotnet test --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" --collect:"XPlat Code Coverage" --results-directory ./coverage

Expand Down

0 comments on commit 9a8254c

Please sign in to comment.