Skip to content

Commit

Permalink
Check for .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi authored Jul 1, 2024
1 parent 0717721 commit bd477f6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,13 @@ runs:
env:
ENV_PATH: ${{ inputs.ENV_PATH }}

- run: |
cat .env
- name: Display env
run: |
if [[ -f .env ]]; then
cat .env
else
echo ".env file does not exist"
fi
shell: bash

- name: Run zeitwerk chek
Expand Down

0 comments on commit bd477f6

Please sign in to comment.