|  | @@ -1,4 +1,4 @@
 | 
	
		
			
				|  |  | -name: .NET Core
 | 
	
		
			
				|  |  | +name: .NET
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  on: [push]
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -8,12 +8,12 @@ jobs:
 | 
	
		
			
				|  |  |      runs-on: ubuntu-latest
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      steps:
 | 
	
		
			
				|  |  | -    - uses: actions/checkout@v1
 | 
	
		
			
				|  |  | -    - name: Setup .NET Core
 | 
	
		
			
				|  |  | -      uses: actions/setup-dotnet@v1
 | 
	
		
			
				|  |  | +    - uses: actions/checkout@v2
 | 
	
		
			
				|  |  | +    - name: Setup .NET
 | 
	
		
			
				|  |  | +      uses: actions/setup-dotnet@v2
 | 
	
		
			
				|  |  |        with:
 | 
	
		
			
				|  |  |          dotnet-version: 5.0.x
 | 
	
		
			
				|  |  |      - name: Test
 | 
	
		
			
				|  |  | -      run: dotnet test ProcessFilesTests/
 | 
	
		
			
				|  |  | +      run: dotnet test --no-build --verbosity normal
 | 
	
		
			
				|  |  |      - name: Build
 | 
	
		
			
				|  |  | -      run: dotnet build --configuration Release --framework netcoreapp3.1 ProcessFiles/
 | 
	
		
			
				|  |  | +      run: dotnet build --no-restore
 |