Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Aug 27, 2024
1 parent de46e38 commit eb04106
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,15 @@ jobs:
run: |
# Run the script and capture its output
echo "We are about to get the output"
ALL_TESTS=$(./scripts/test.sh | base64 --decode)
GREET=$(./scripts/simple.sh)
ALL_TESTS=$(./scripts/test.sh)
echo "all_tests=$ALL_TESTS" >> $GITHUB_ENV
echo "greet=$GREET" >> $GITHUB_ENV
- name: Print the captured output
run: |
echo "${{ steps.get_all_tests.outputs.all_tests }}"
echo "${{ env.all_tests }}"
echo "${{ env.greet }}"
debug-generate-tests:
name: ${{matrix.tests}}
needs: generate-tests
Expand Down
3 changes: 3 additions & 0 deletions scripts/simple.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

echo "Hello Jordan"

0 comments on commit eb04106

Please sign in to comment.