We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 695206f commit 215ead8Copy full SHA for 215ead8
.github/workflows/tests.yaml
@@ -33,6 +33,11 @@ jobs:
33
run: |
34
curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin/phpenv-installer | PHPENV_ROOT=$HOME/.phpenv-root bash
35
echo 'export PATH="${PHPENV_ROOT}/bin:${PATH}"' >> ~/.bash_profile
36
+ FILE="$PHPENV_ROOT/bin/phpenv"
37
+ if [ -f "$FILE" ]; then
38
+ echo "$FILE exists."
39
+ fi
40
+
41
source ~/.bash_profile
42
export PATH="${PHPENV_ROOT}/bin:${PATH}"
43
eval "$(/home/runner/.phpenv-root/bin/phpenv init -)"
0 commit comments