From a287a3e572ad1f3d444c9d77648d4eebc4595003 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 27 Aug 2024 15:59:32 -0600 Subject: [PATCH] test --- .github/workflows/test.yml | 2 +- scripts/just-paths.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e29b24f93..c34a8e1b98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -111,7 +111,7 @@ jobs: - name: Print the captured output run: echo "${{ steps.example_directories.outputs.example_directories }}" test-path-debugging: - name: ${{matrix.tests.name}} \| ${{matrix.tests.type}} \| ${{matrix.tests.syntax}} \| ${{matrix.tests.api}} + name: ${{matrix.tests.name}} / ${{matrix.tests.type}} / ${{matrix.tests.syntax}} / ${{matrix.tests.api}} runs-on: ubuntu-latest needs: test-path-generate strategy: diff --git a/scripts/just-paths.sh b/scripts/just-paths.sh index 5de4301757..32026a932a 100755 --- a/scripts/just-paths.sh +++ b/scripts/just-paths.sh @@ -1,9 +1,9 @@ #!/bin/bash EXAMPLE_DIRECTORIES=$(cat << END [ - {path: "HERE/hello_world", name: "cool", type: "ex"}, - {path: "HERE/hello_world2", name: "boy", type: "e2e", "syntax": "crpc"}, - {path: "HERE/hello_world3", name: "town", type: "prop", "syntax": "crpc", "api": "class"} + {path: "HERE/hello_world", name: "basic_bitcoin", type: "ex"}, + {path: "HERE/hello_world2", name: "large_files", type: "e2e", "syntax": "http"}, + {path: "HERE/hello_world3", name: "bool", type: "prop", "syntax": "crpc", "api": "class"} ] END )