Piotr Czajkowski 2 years ago
parent
commit
26d2bac3f5
1 changed files with 6 additions and 6 deletions
  1. 6 6
      .github/workflows/dotnetcore.yml

+ 6 - 6
.github/workflows/dotnetcore.yml

@@ -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