Merge fast-forward #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test commands | |
on: | |
push: | |
branches: [ 1.x ] | |
pull_request: | |
branches: [ 1.x ] | |
jobs: | |
test: | |
# Build on Monterey and later Ventura (Not public released yet: https://github.com/actions/runner-images) | |
strategy: | |
matrix: | |
os: [macos-14] | |
# php: ['8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1'] | |
php: ['8.2'] | |
runs-on: ${{matrix.os}} | |
name: ${{matrix.os}} with ${{matrix.php}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: '[INSTALL] Install PHP 8.1' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
extensions: dom, curl, libxml, mbstring, zip, fileinfo | |
ini-values: error_reporting=E_ALL, max_execution_time=-1, memory_limit=512M | |
tools: composer:v2 | |
coverage: none | |
- name: '[INSTALL] Brew setup' | |
run: | | |
# Temporary fix, see https://github.com/actions/setup-python/issues/577 | |
rm -f /usr/local/bin/2to3 || true | |
rm -f /usr/local/bin/2to3-3.12 || true | |
rm -f /usr/local/bin/idle3 || true | |
rm -f /usr/local/bin/idle3.12 || true | |
rm -f /usr/local/bin/pydoc3 || true | |
rm -f /usr/local/bin/pydoc3.12 || true | |
rm -f /usr/local/bin/python3 || true | |
rm -f /usr/local/bin/python3.12 || true | |
rm -f /usr/local/bin/python3-config || true | |
rm -f /usr/local/bin/python3.12-config || true | |
- name: '[CACHE] Handle brew deps' | |
uses: actions/cache@v4.0.0 | |
with: | |
# Paths to cache: | |
# /usr/local/Homebrew - installation folder of Homebrew | |
# /usr/local/Cellar - installation folder of Homebrew formulae | |
# /usr/local/Frameworks, /usr/local/bin, /usr/local/opt - contain (links to) binaries installed by Homebrew formulae | |
# /usr/local/lib/python3.12 - Python3 packages installation | |
path: | | |
/usr/local/Homebrew | |
/usr/local/Cellar | |
/usr/local/Frameworks | |
/usr/local/bin | |
/usr/local/opt | |
/usr/local/lib/python3.12 | |
key: ${{matrix.os}}-build-cache-${{ hashFiles('./valet-pro') }}-v2 | |
- name: '[INSTALL] Composer install' | |
run: composer install --no-dev --no-interaction --prefer-dist | |
- name: '[INSTALL] Valet install' | |
run: ./valet-pro install | |
- name: '[TEST] Nginx' | |
run: | | |
sudo nginx -t | |
curl 127.0.0.1 | grep "Valet - Not Found" | |
- name: '[TEST] DB commands' | |
run: | | |
./valet-pro db create testci | grep "\"testci\" created successfully" | |
./valet-pro db list | grep "testci" | |
./valet-pro db drop testci -y | grep "\"testci\" dropped successfully" | |
- name: '[TEST] PHP switch' | |
run: | | |
brew unlink php || true | |
brew link --overwrite php@8.1 --force || true | |
./valet-pro use ${{matrix.php}} --force | |
php -v | grep ${{matrix.php}} | |
- name: '[TEST] xdebug on and off' | |
run: | | |
./valet-pro xdebug on | |
./valet-pro xdebug off | |
- name: '[TEST] memcache on and off' | |
run: | | |
./valet-pro memcache on | |
./valet-pro memcache off |