diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 578b043f..120dee61 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -50,6 +50,17 @@ jobs: run: msbuild src\caliburn.micro.sln /t:Build - name: Dotnet Tests uses: EasyDesk/action-dotnet-test@v1.0.0 + with: + # (Optional) The root where the 'dotnet test' command should look for a project or a solution. + # If not specified, defaults to the current directory. + path: src\caliburn.micro.sln + # (Optional) Additional command line arguments to be passed to 'dotnet test'. + # Emtpy by default. + # test-args: '' + + # (Optional) Whether to skip the build using the '--no-build' flag. + # If not specified, defaults to true. + skip-build: true