Skip to content

Commit

Permalink
Fix test check failing on pushing to master
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad-AlDeeb authored Sep 29, 2024
1 parent 336a020 commit b24df0f
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,25 @@ jobs:
distribution: 'temurin'
cache: maven

- name: Setup Testcontainers Cloud Client
uses: atomicjar/testcontainers-cloud-setup-action@v1
with:
token: ${{ secrets.TC_CLOUD_TOKEN }}
# - name: Setup Testcontainers Cloud Client
# uses: atomicjar/testcontainers-cloud-setup-action@v1
# with:
# token: ${{ secrets.TC_CLOUD_TOKEN }}

# Check Docker Service
- name: Check Docker version
run: docker --version

- name: Docker info
run: docker info

# Testcontainers
- name: Set up Testcontainers environment
run: |
sudo sysctl -w net.ipv4.ip_forward=1
sudo mkdir -p /etc/docker
echo '{ "features": { "buildkit": false } }' | sudo tee /etc/docker/daemon.json
sudo service docker restart
# Test
- name: Test
Expand Down

0 comments on commit b24df0f

Please sign in to comment.