Skip to content

Add support to laravel 10 #107

Add support to laravel 10

Add support to laravel 10 #107

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]
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