From cc502328571b8a99c81044da9852d81d58ab80dd Mon Sep 17 00:00:00 2001 From: smol-ninja Date: Tue, 13 Aug 2024 00:45:53 +0530 Subject: [PATCH] ci: rename workflow file --- .github/workflows/{test-action.yml => ci.yml} | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{test-action.yml => ci.yml} (93%) diff --git a/.github/workflows/test-action.yml b/.github/workflows/ci.yml similarity index 93% rename from .github/workflows/test-action.yml rename to .github/workflows/ci.yml index 09ce8b9..ccbf688 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: test-action +name: ci on: push: @@ -6,7 +6,7 @@ on: - main jobs: - test-action: + ci: runs-on: "ubuntu-latest" steps: - name: "Check out the repo" diff --git a/action.yml b/action.yml index b339a29..78cde7c 100644 --- a/action.yml +++ b/action.yml @@ -79,9 +79,9 @@ runs: run: | echo "🌳 Verifying the Solidity tests using Bulloak" if [ "$SKIP_MODIFIERS" == "true" ]; then - echo "bulloak check $TREE_PATH --skip-modifiers" >> $GITHUB_OUTPUT + echo -e "bulloak check ${TREE_PATH} --skip-modifiers" >> $GITHUB_OUTPUT bulloak check "$TREE_PATH" --skip-modifiers else - echo "bulloak check $TREE_PATH" >> $GITHUB_OUTPUT + echo -e "bulloak check ${TREE_PATH}" >> $GITHUB_OUTPUT bulloak check "$TREE_PATH" fi \ No newline at end of file