Skip to content

Commit

Permalink
more testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi committed Sep 18, 2024
1 parent 38b6a45 commit f5b0e62
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,19 @@ runs:
- name: Additional Setup
if: inputs.ADDITIONAL_SETUP != '[]'
shell: bash
env:
ADDITIONAL_SETUP: ${{ inputs.ADDITIONAL_SETUP }}
# env:
# ADDITIONAL_SETUP: ${{ inputs.ADDITIONAL_SETUP }}
run: |
echo "$ADDITIONAL_SETUP" | jq -r '.[]' | while read -r command; do
echo "Executing command: $command"
$command
additional_setup='${{ inputs.ADDITIONAL_SETUP }}'
echo "$additional_setup" | jq -r '.[]' | while read -r command; do
echo "Executing additional setup command: $command"
eval "$command
done
# run: |
# echo "$ADDITIONAL_SETUP" | jq -r '.[]' | while read -r command; do
# echo "Executing command: $command"
# $command
# done

- uses: actions/cache@v4
with:
Expand Down

0 comments on commit f5b0e62

Please sign in to comment.