From 6c8be9cba6c5481c1acf68c76c21f223909d3cb7 Mon Sep 17 00:00:00 2001 From: Piotr Mionskowski Date: Fri, 10 Nov 2023 14:16:12 +0100 Subject: [PATCH] Use echo --- .github/actions/compile-test-lint/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/compile-test-lint/action.yml b/.github/actions/compile-test-lint/action.yml index 277082d..7ade06d 100644 --- a/.github/actions/compile-test-lint/action.yml +++ b/.github/actions/compile-test-lint/action.yml @@ -9,8 +9,10 @@ runs: - name: "Compile" run: echo 'Compile' shell: bash - - uses: ${{ inputs.before-test-action }} + - run: echo Hello ${{ inputs.before-test-action }}. name: "Before test" + shell: bash + # uses: ${{ inputs.before-test-action }} - run: echo 'Test' name: "Test" shell: bash