From fee27923faa5f516668742e48194577225408358 Mon Sep 17 00:00:00 2001 From: Jinghui Liao Date: Fri, 13 Oct 2023 02:44:18 +0800 Subject: [PATCH] fix path --- .github/workflows/test_devpack.yml | 2 +- .github/workflows/test_plugins.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_devpack.yml b/.github/workflows/test_devpack.yml index 2215ef56ce..f8df42771f 100644 --- a/.github/workflows/test_devpack.yml +++ b/.github/workflows/test_devpack.yml @@ -39,5 +39,5 @@ jobs: - name: Test neo-devpack-dotnet run: | - cd neo-devpack-dotnet/tests + cd neo-devpack-dotnet dotnet test diff --git a/.github/workflows/test_plugins.yml b/.github/workflows/test_plugins.yml index 39fbe4d507..1f218d523e 100644 --- a/.github/workflows/test_plugins.yml +++ b/.github/workflows/test_plugins.yml @@ -27,7 +27,7 @@ jobs: # Add a ProjectReference to the local Neo project # Assuming the neo project's main .csproj is in its src/neo directory # Adding the ProjectReference to the Directory.Build.props is unconventional, but for the sake of this example, let's do it. - sed -i '/<\/ItemGroup>/i \ ' $props_path + sed -i '/<\/ItemGroup>/i \ ' $props_path - name: Setup .NET Core uses: actions/setup-dotnet@v1 @@ -43,6 +43,6 @@ jobs: # Add test steps - name: Test neo-modules run: | - cd neo-modules/tests + cd neo-modules/ dotnet test