File tree Expand file tree Collapse file tree 1 file changed +0
-27
lines changed Expand file tree Collapse file tree 1 file changed +0
-27
lines changed Original file line number Diff line number Diff line change 8484
8585
8686
87- name : Test Copilot agent environment 
88-         run : | 
89-           echo "🧪 Testing Copilot agent environment capabilities..." 
90-            
91-           # Test basic .NET commands 
92-           dotnet --list-sdks 
93-           dotnet --list-runtimes 
94-            
95-           # Test EF Core tools 
96-           dotnet ef --help > /dev/null && echo "✅ EF Core tools working" 
97-            
98-           # Test that we can create a simple project (cleanup afterwards) 
99-           cd /tmp 
100-           dotnet new console -n TestCopilotEnv 
101-           cd TestCopilotEnv 
102-           dotnet build 
103-           cd .. 
104-           rm -rf TestCopilotEnv 
105-           echo "✅ Project creation and build test passed" 
106-            
107-           # Test Docker functionality 
108-           docker --version 
109-           echo "✅ Docker available" 
110-            
111-           # Test that our solution is properly restored and built 
112-           cd ${{ github.workspace }} 
113-           echo "✅ Solution build completed successfully" 
11487
11588name : Display environment information 
11689        run : | 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments