Skip to content

Commit

Permalink
TEST: Workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsvetanov committed Dec 12, 2023
1 parent 7f2ab39 commit fbc8577
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,21 @@ jobs:
# export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
notify_message "Checking PHP"
php -v
initial_php_version=$(php -v | grep -e '^PHP' | cut -d ' ' -f2 | cut -d '.' -f1,2)
if [[ command -v ashdiuasdhu ]]; then
error_message "ashdiuasdhu exists"
fi
notify_message "Initial PHP version is ${initial_php_version}"
notify_message "Checking PHP"
if [[ command -v php ]]; then
php -v
initial_php_version=$(php -v | grep -e '^PHP' | cut -d ' ' -f2 | cut -d '.' -f1,2)
notify_message "Initial PHP version is ${initial_php_version}"
notify_message "Removing PHP and all of it's dependencies"
brew uninstall php
brew autoremove
fi
notify_message "Checking Brew"
brew --version
Expand Down

0 comments on commit fbc8577

Please sign in to comment.