Skip to content

Merge pull request #208 from RohanSakhale/fix-routing-proxies-links #113

Merge pull request #208 from RohanSakhale/fix-routing-proxies-links

Merge pull request #208 from RohanSakhale/fix-routing-proxies-links #113

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
windows_tests:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run unit tests
run: composer test-unit
# - name: Run integration tests
# run: |
# $env:Path += ';' + (Get-Item .).FullName
# composer test-integration-windows