Skip to content

Commit

Permalink
check shell env
Browse files Browse the repository at this point in the history
  • Loading branch information
ndim committed Nov 11, 2022
1 parent cabbeb9 commit e29fd21
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/matrix-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
shell: ${{ matrix.shell }}

steps:
- name: 'git config'
- name: 'git config core.autocrlf (Windows)'
if: runner.os == 'Windows'
run: git config --global core.autocrlf input
shell: bash
Expand Down Expand Up @@ -54,5 +54,9 @@ jobs:
if: runner.os == 'macOS'
run: echo NPROC="$(sysctl -n hw.logicalcpu)" >> $GITHUB_ENV

- name: 'Check NPROC value'
run: echo NPROC=$NPROC
- name: 'Check shell environment'
run: |
echo "NPROC=$NPROC"
echo "SHELL=$SHELL"
echo "BASH_VERSION=$BASH_VERSION"
$SHELL --version

0 comments on commit e29fd21

Please sign in to comment.