Skip to content

Commit

Permalink
adjust action test
Browse files Browse the repository at this point in the history
  • Loading branch information
nedredmond committed Sep 21, 2023
1 parent e5857b2 commit b9ec343
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,14 @@ jobs:
id: test-action
uses: ./
with:
changed_files: ''
changed_files: '[]'

- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.time }}"
- name: Print Success
if: success()
id: success
run: echo "Success"

- name: Print Failure
if: failure()
id: failure
run: echo "Failure"

0 comments on commit b9ec343

Please sign in to comment.