Skip to content

accomodate different cli behavior for passing string arguments on win… #134

accomodate different cli behavior for passing string arguments on win…

accomodate different cli behavior for passing string arguments on win… #134

Workflow file for this run

name: Test
on:
- push
jobs:
test:
strategy:
matrix:
operating-system:
- ubuntu-latest
- windows-latest
- macos-latest
php-version:
- "8.1"
- "8.2"
- "8.3"
name: php ${{ matrix.php-version }} on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: bcmath, ctype, fileinfo, json, mbstring, openssl, pdo, tokenizer, xml
coverage: none
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Setup composer cache
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Print Audit Data
run: php whisky audit
- name: Run tests
run: php whisky test