File tree Expand file tree Collapse file tree 1 file changed +10
-14
lines changed Expand file tree Collapse file tree 1 file changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -19,26 +19,22 @@ jobs:
1919    - name : Checkout repo 
2020      uses : actions/checkout@v4 
2121
22-     - name : Set up Docker Compose 
23-       uses : hoverkraft-tech/compose-action@v2.0.2 
24-       with :
25-         compose-file : | 
26-           docker-compose.yml 
27-           docker-integration-tests.yml 
22+     - name : Run docker compose 
23+       run : docker-compose -f docker-compose.yml -f docker-integration-tests.yml up -d 
24+       working-directory : ./ 
25+ 
26+     #  - name: Set up Docker Compose
27+     #    uses: hoverkraft-tech/compose-action@v2.0.2
28+     #    with:
29+     #      compose-file: |
30+     #        docker-compose.yml
31+     #        docker-integration-tests.yml
2832
2933    - name : Setup .NET 
3034      uses : actions/setup-dotnet@v3 
3135      with :
3236        dotnet-version : 8.0.x 
3337
34-     - name : Wait for server to be ready 
35-       run : | 
36-        while ! curl -s http://localhost:8082 > /dev/null; do 
37-          echo "Waiting for server..." 
38-          sleep 5 
39-        done 
40-        shell : bash 
41- 
4238    - name : Restore dependencies 
4339      run : dotnet restore 
4440      working-directory : ./src/ 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments