From efcdd4b9e55b74fe99013197e636c9e5d11f0628 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 19 Feb 2021 08:54:32 +0200 Subject: [PATCH] fix script 1 --- .github/scripts/setup_examples_test.bash | 2 +- .github/workflows/ci.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/scripts/setup_examples_test.bash b/.github/scripts/setup_examples_test.bash index 4c3080b0..f06aec18 100755 --- a/.github/scripts/setup_examples_test.bash +++ b/.github/scripts/setup_examples_test.bash @@ -1,6 +1,6 @@ #!/usr/bin/env bash -for f in *; do +for f in ../../_examples/*; do if [ -d "$f" ]; then # Will not run if no directories are available go mod init diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b5bb312..523e6218 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,6 @@ jobs: uses: actions/checkout@v2 - name: Setup examples for testing - working-directory: _examples run: ./.github/scripts/setup_examples_test.bash - name: Test examples