diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 29c2f40..e71e200 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v2 @@ -21,7 +21,7 @@ jobs: run: dotnet restore working-directory: Lingo - name: Build - run: msbuild --configuration Release --no-restore + run: dotnet build --configuration Release --no-restore working-directory: Lingo - name: Test run: dotnet test /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile=\\"**/Migrations/,**/Data/,**Startup.cs,**Program.cs,**/DTO/,**/Profiles/"