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 )