diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index 4aec4109..10f9ca3c 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -453,7 +453,7 @@ jobs: name: "Install project dependencies" command: | cd gpt4all-bindings/csharp - $HOME/cli-tools/dotnet restore Gpt4All + dotnet restore Gpt4All - save_cache: paths: - ~/.nuget/packages @@ -462,12 +462,12 @@ jobs: name: Build C# Project command: | cd gpt4all-bindings/csharp - $HOME/cli-tools/dotnet build Gpt4All --configuration Release + dotnet build Gpt4All --configuration Release - run: name: "Run C# Tests" command: | cd gpt4all-bindings/csharp - $HOME/cli-tools/dotnet test Gpt4All.Tests -v n --filter "SKIP_ON_CI!=True" --logger "trx" + dotnet test Gpt4All.Tests -v n --filter "SKIP_ON_CI!=True" --logger "trx" - run: name: test results command: |