Skip to content

Commit

Permalink
separate printout for cleaner view
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored May 29, 2024
1 parent cfba1fc commit b898150
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/testing_pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,17 @@ jobs:
run: |
touch .env
echo "GIN_TESTING_DATA_DIRECTORY=$(pwd)" >> .env
cat .env
- name: Save working directory to .env (Windows)
if: matrix.os == 'windows-latest'
run: echo GIN_TESTING_DATA_DIRECTORY=%CD% >> .env

# Display environment file for debugging
- name: Save working directory to .env (Unix)
if: matrix.os != 'windows-latest'
run: cat .env
- name: Save working directory to .env (Windows)
if: matrix.os == 'windows-latest'
run: |
echo GIN_TESTING_DATA_DIRECTORY=%CD% >> .env
type .env
run: type .env

# Run pipeline tests
- if: matrix.os != 'ubuntu-latest'
Expand Down

0 comments on commit b898150

Please sign in to comment.