Skip to content

Commit

Permalink
switch to docker compose (#2771)
Browse files Browse the repository at this point in the history
docker-compose is not available by default anymore on `ubuntu-latest`
[details here]( actions/runner-images#9692)
  • Loading branch information
atakavci authored Aug 3, 2024
1 parent 1e40509 commit 4852cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: dotnet build Build.csproj -c Release /p:CI=true
- name: Start Redis Services (docker-compose)
working-directory: ./tests/RedisConfigs
run: docker-compose -f docker-compose.yml up -d
run: docker compose -f docker-compose.yml up -d
- name: StackExchange.Redis.Tests
run: dotnet test tests/StackExchange.Redis.Tests/StackExchange.Redis.Tests.csproj -c Release --logger trx --logger GitHubActions --results-directory ./test-results/ /p:CI=true
- uses: dorny/test-reporter@v1
Expand Down

0 comments on commit 4852cca

Please sign in to comment.